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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

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
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors