Forum Discussion
polinab
2 years agoRegular Visitor
sum calculatin using filter and all functions
Hi, Having table below I need calculate total sum after certain time id (10/15/2023 in example) and present it in each cell as following. using filter(Time ID > 10/15/2023) and then all(Time ID) do...
- 2 years ago
polinab , Based on what I got
Assume Completed is column we need sum
Calculate(Sum(Table[Completed]) , filter(allselected(Table), Table[Time] > Date(2023,11,15) ) )
amitchandak
Super User
2 years agopolinab , Based on what I got
Assume Completed is column we need sum
Calculate(Sum(Table[Completed]) , filter(allselected(Table), Table[Time] > Date(2023,11,15) ) )
- polinab2 years agoRegular Visitor
Thank you Amit,
allselected worked for me