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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
bmk
Helper II
Helper II

Generate text based on condition like in Excel

Consider an Excel blank sheet where cell A1 = 12, and we define a condition for cell B1 =IF(A1>10,"Cell is greater than 10", "Cell is less than 10"). Result for cell B1 = Cell is greater than 10.

 

How do I achieve this on Power BI, in a simple table format just like in Excel, preferably multiple lines with conditions and results like the above.

1 ACCEPTED SOLUTION

3 REPLIES 3
Anonymous
Not applicable

Hi @bmk ,

I created a sample pbix file(see attachment), please check whether that is what you want.

Create a measure or calculated column as below to get the status text:

Measure = 
VAR _curvalue =
    SELECTEDVALUE ( 'Table'[A] )
RETURN
    IF (
        _curvalue > 10,
        "Cell is greater than 10",
        IF ( _curvalue < 10, "Cell is less than 10", "Cell is equal to 10" )
    )
Column = 
SWITCH (
    TRUE (),
    'Table'[A] > 10, "Cell is greater than 10",
    'Table'[A] < 10, "Cell is less than 10",
    "Cell is equal to 10"
)

yingyinr_0-1633574635385.png

Best Regards

Thank you!

smpa01
Super User
Super User

@bmk  with DAX measuere

 

Measure = switch (true(), calculate(max(fact[colA]))>10, "Cell is greater than 10","Cell is lesser than 10")
           
Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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