Hi,
I have a sharepoint list named sumDemo and is given below -
I need to add the numbers in column named "mon" and "tue" where name is "ashay". Appreciate any help !

Hi,
I have a sharepoint list named sumDemo and is given below -
I need to add the numbers in column named "mon" and "tue" where name is "ashay". Appreciate any help !
Hello,
Found a solution and the working formula is -
Sum(Filter(sumDemo,name_filter in name), mon)
The above function filters the records with name_filter (="ashay" here) and returns the sum of column "mon" (The name of my column)
Thanks !