Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
PaulDBrown
Community Champion
Community Champion

KPI Visual: empty "Goal" and "+Infinity%"?

Good Afternoon,

 

There must be an obvious reason but I cannot fathom it out. I am trying to include a KPI visual which compares YTD sales figures with Previous YTD sales, but I get and empty comparison.

Here is the screenshot:

 

KPI Visual.PNG

The two boxes underneath are the measure reflecting both current and previous year YTD sales numbers.

The trend axis is "year".

 

Any pointers??

 

Thank you very much for your help!

 

regards

Paul.





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






1 ACCEPTED SOLUTION

@PaulDBrown

Thanks for sharing the pbix. Add ALL to the filter to exclude any filter context.

 

Sales YTD = calculate(sum('Campañas2'[Facturación Real]),
	Filter(ALL(YearMonth),
	YearMonth[month]<= MONTH(TODAY())
	&&
	YearMonth[year]=YEAR(TODAY())
	))

Sales MonthTD Previous Year = calculate(sum('Campañas2'[Facturación Real]),
	Filter(ALL(YearMonth),
	YearMonth[month]= MONTH(TODAY())
	&&
	YearMonth[year]=YEAR(TODAY())-1
	))

Capture.PNG

 

 

View solution in original post

7 REPLIES 7
Eric_Zhang
Microsoft Employee
Microsoft Employee

@PaulDBrown

 

What are those two measure DAX formula? Could you share a sample pbix file?

@Eric_Zhang

 

Sure I can share a sample pbix file? How do I share it though??





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






@PaulDBrown

You can upload a pbix file to Onedrive or any web storage and share the link. Do mask sensitive data before uploading.

@Eric_Zhang

 

Here it is:

 

KPI test File





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






@PaulDBrown

Thanks for sharing the pbix. Add ALL to the filter to exclude any filter context.

 

Sales YTD = calculate(sum('Campañas2'[Facturación Real]),
	Filter(ALL(YearMonth),
	YearMonth[month]<= MONTH(TODAY())
	&&
	YearMonth[year]=YEAR(TODAY())
	))

Sales MonthTD Previous Year = calculate(sum('Campañas2'[Facturación Real]),
	Filter(ALL(YearMonth),
	YearMonth[month]= MONTH(TODAY())
	&&
	YearMonth[year]=YEAR(TODAY())-1
	))

Capture.PNG

 

 

Hi Eric, I used to have the same issue as you.

I solve my issue by correcting my model relationship between fact table and date dim table.

So I suggest you to check you relationship.

@Eric_Zhang

Thanks you!!!

 

You're an absolute star!

 

(I only wish I understood why addin "ALL" is necessary though...)

 

Best regards,

 

Paul.





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors