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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

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
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

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