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! Request now

Reply
SteveIOW
Helper II
Helper II

create measure using text that ignores on page filters

HI,

 

I have a table of data as shown

SteveIOW_0-1670935999647.png

I am creating a report with 6 pages, each with  data from a different tab ( column D above).

I want to display the submitter's name though that is a Value in a different tab.

i.e. I need to create a measure from a non-numeric value that ignores the page filter set to the tab.

 

I assume I need to use ALLEXCEPT but how do I create a measure from a text value which will do this?

I got this far...

CALCULATE(LEFT(MainFacts[MetricValue],100), ALL(MainFacts), MainFacts[MetricName] = "SubmitterName")

 

Kind regards

 

Steve

2 REPLIES 2
v-yalanwu-msft
Community Support
Community Support

Hi, @SteveIOW ;

You could try it.

value =
CALCULATE (
    LEFT ( MainFacts[MetricValue], 100 ),
    FILTER ( ALL ( MainFacts ), [MetricName] = "SubmitterName" )
)


Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. 

sorry - accepted this by accident - 

I get this...

SteveIOW_0-1671637973423.png

 

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