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

Join the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now

Reply
GhadaMehrez
Helper III
Helper III

Measure Filter

Currently, I have a dashboard, which contains the below fields:

 

1- Estimated Total Cost (%) >>>> this is custom measure

2- Actuals Cost (%)>>>> this is custom measure

1- Estimated Total Cost ($) >>>> this is custom measure

2- Actuals Cost ($) >>>> this is custom measure

 

I succeeded to build the first row for total and for Strategy Categories.

the error here in the second section I need to filter the fields based on duration (Short-Mid-Long).

first I created a measure to calculate the difference between the Start and End Date of projects to give me No. of the month in order to allow me to calculate duration as:

Short Term (0-1 Year)

Mid Term (1-2 years)

Long Term (Above 2 years)

here is the measure expression:

No.of months = SUMX(Projects, DATEDIFF(Projects[fls_actualstartdate],Projects[fls_actualenddate],month))

 

Second I have card visual as 1st section to set the values but cards not allow filter measure as below screen:

Any help how to accomplish this task please??

 

GhadaMehrez_0-1660240517815.png

 

GhadaMehrez_1-1660240673976.png

 

2 REPLIES 2
Anonymous
Not applicable

Hi @GhadaMehrez ,

 

I suggest you to add a duraction flag column in 'Product' table.

Duration Flag =
SWITCH (
    TRUE (),
    [No.of months] <= 12, "Short Term",
    [No.of months] <= 24, "Mid Term",
    "Long Term"
)

Then you can filter your measure by the slicer which is built based on this calcualted column.

 

Best Regards,

Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

thanks a lot for your help but I don't have permission to add column so I added {duration} measure as you suggested but I still cannot filter card visuals by Duration measure :

GhadaMehrez_0-1660639704961.png

 

I have another idea maybe I need to update this measure by adding filter by duration, could you help me in this:

 

 

% ETC V3 =
DIVIDE(
[ETC This Year],
CALCULATE(
Sumx(FILTER(Projects, [fls_actualenddate], [fls_actualstartdate], [Duration Flag] Short Term),
ALL('Projects'[fls_StrategyThemeName]),
)
)

GhadaMehrez_1-1660639848698.png

 

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.