Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello,
I have used an IF funtion to replace the blank gross margin % (for months when there is no sales) for 0, so that my line graph doesnt break.
However I then want the months in which there are no sales to return blank, rather than 0, can I please help with this? It seems that when using the IF function blank replacement, all subsequent months are 0, not blank, even when filtering for last sales.
So ideally, the measure, Stop GM% after last sale would be blank from Aug 22 onwards.
Measures
Thanks!
https://1drv.ms/u/s!As8wMr9_bgGrgWstsIAjHqF-oJOI?e=WG8HNb PBIX file link here
Thanks!
Solved! Go to Solution.
Hi @watje255_ju
I hope this is what your looking for https://www.dropbox.com/t/6CtxqpNbKlUr0hd7
Stop GM % after last sale =
Var LastSalesDate = CALCULATE ( MAX (Margin[Month] ), REMOVEFILTERS ( ) )
VAR Result =
IF ( MAX ( DimDate[DateKey]) <= LastSalesDate, [GM% with 0 replacing blank] )
RETURN
Result
Hi @watje255_ju
I hope this is what your looking for https://www.dropbox.com/t/6CtxqpNbKlUr0hd7
Stop GM % after last sale =
Var LastSalesDate = CALCULATE ( MAX (Margin[Month] ), REMOVEFILTERS ( ) )
VAR Result =
IF ( MAX ( DimDate[DateKey]) <= LastSalesDate, [GM% with 0 replacing blank] )
RETURN
Result
Thank you so much!!
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
26 | |
10 | |
10 | |
9 | |
6 |