Forum Discussion
Anonymous
7 years agoNot 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 Ov...
- 7 years ago
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]))
jthomson
7 years agoSolution 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]))