Forum Discussion
zfemmer
Helper I
5 years agoRunning Total Measures
I have a few measures that the end user can choose from that will feed into the visuals; WTD, MTD, YTD, last 30 days, etc. The end user has now asked to have the option to see the revenue numbers...
- 5 years ago
Just wrap the result inside an if statement
if([some measure that doesn't return a result into the future]<>0,your result)
MattAllington
Community Champion
5 years agoJust wrap the result inside an if statement
if([some measure that doesn't return a result into the future]<>0,your result)