I have two Columns in Below format in my application (c#)
Month Name Amount
Jan15 ==2000
Feb15 ==457
Mar15 =200
April15 =4666
May15 = 357
Jan16 = 332
feb16 =323
Mar16 =233
these columns are dynamic (any number of columns can cm in Same format) I need to get the sum of all the amounts where month is after Mar15. How to achieve that. Pseudo code
If MonthName >Mar15
amount = sum (amount)