Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
Check it out now!Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Hi Folks,
I am looking for a way to replace the automatic total with a number I want on the Waterfall chart. Any suggestions on how to do this?
Thanks
Solved! Go to Solution.
Hi @Anonymous ,
You could take a look at ISINSCOPE() function.
https://docs.microsoft.com/en-us/dax/isinscope-function-dax .
It will return "false" at total field and you could use it with IF() function.
IF(ISINSCOPE(), result_when_true, result_when_false)
Best Regards,
Jay
Hi @Anonymous ,
You could take a look at ISINSCOPE() function.
https://docs.microsoft.com/en-us/dax/isinscope-function-dax .
It will return "false" at total field and you could use it with IF() function.
IF(ISINSCOPE(), result_when_true, result_when_false)
Best Regards,
Jay