Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi All,
I have the below DAX that works for the dates selected but on either side of the range selected I get "infinity" entries on my row.
Please see below - Is there something I need to omit from the below to avoid this?
Thanks Folks
Solved! Go to Solution.
Hi,
Instead of using / for division use DIVIDE here:
DIVDE(Priorweeks,max('Plan PBI_GTS_SIOP_Supply_Demand'[PBI Fiscal_Calendar - Week Level.Remaining Weeks]))
I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!
My LinkedIn: https://www.linkedin.com/in/n%C3%A4ttiahov-00001/
Proud to be a Super User!
Hi,
Instead of using / for division use DIVIDE here:
DIVDE(Priorweeks,max('Plan PBI_GTS_SIOP_Supply_Demand'[PBI Fiscal_Calendar - Week Level.Remaining Weeks]))
I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!
My LinkedIn: https://www.linkedin.com/in/n%C3%A4ttiahov-00001/
Proud to be a Super User!
@ValtteriN Hero, thank you so much for this. It has been driving me mad for a while now.