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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

Question regarding Power BI Cards

Hi, I am trying to show total engine miles traveled by an engine over a specific date range and the total miles. 

 

Something like this, Total miles based on dates selected  / (Not divide) Total Overall miles. In the same card

 

I am able to get total miles based on dates with a simple DAX query but now I also want to show the overall miles with it. 

 

I am not very sure how to approach this problem can anyone help. 

 

Thanks 

1 ACCEPTED SOLUTION
jthomson
Solution Sage
Solution Sage

Make a similar measure for overall total miles, using some sort of ALL/ALLEXCEPT filter to ignore your dates, then for your card concatenate the two together with something like:

 

cardmeasure = concatenate([existingmeasure],concatenate(" / ",[newmeasure]))

View solution in original post

1 REPLY 1
jthomson
Solution Sage
Solution Sage

Make a similar measure for overall total miles, using some sort of ALL/ALLEXCEPT filter to ignore your dates, then for your card concatenate the two together with something like:

 

cardmeasure = concatenate([existingmeasure],concatenate(" / ",[newmeasure]))

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

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