Forum Discussion
M_SBS_6
3 years agoHelper V
Filtered Calculation
Hi, I need to create a new calculation for my table to remove the values prior to current month. The calculation will need to be something like this but not too sure on the correct syntax. ...
- 3 years ago
Sorry I was a little fast it need to be sum(apps[app_amount])))
ThomasWeppler
3 years agoImpactful Individual
Try this
Name =
Calculate(sum(apps[app_amount),
if(SELECTEDVALUE(
Apps[info]) in {"test","live"} &&
SELECTEDVALUE(
month_index[month]) < today(),
0,
apps[app_amount]))
- M_SBS_63 years agoHelper V
Thanks for the suggestion but unfortunately, the final part of the logic "apps[app_amount]))" isn't being accepted. I just have the red line underneath.
- ThomasWeppler3 years agoImpactful Individual
Sorry I was a little fast it need to be sum(apps[app_amount])))
- M_SBS_63 years agoHelper V
Thanks for your help