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
gauravnarchal
Post Prodigy
Post Prodigy

Measure in If Statement and Return

 

Hello – How can I create a measure to show

 

Convert column to Text

 

If Product code = Online or ONLINE return 10 or

else "0"

 

Tabel Name = Sale

 

NameBranchProduct Code(Measure) Add column and show the value in each row
ABC IntlNYCOnline10
ZZZ LogisticsLONOffline0
ABC IntlCAI120
ZZZ LogisticsMELOffline0
ABC IntlDELOnline10
ABC IntlSHAONLINE10
ABC IntlNYCOFFLINE0
ZZZ LogisticsNYC130

 

1 ACCEPTED SOLUTION
ChrisMendoza
Resident Rockstar
Resident Rockstar

@gauravnarchal - This works for me:

Measure = 
IF(
    SELECTEDVALUE('Table'[Product Code]) = "Online",
    10,
    0
)

It does seem that from Power Query -> Power BI, "ONLINE" -> "Online" so I didn't have to account for that. Is it different for you?






Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

Proud to be a Super User!



View solution in original post

1 REPLY 1
ChrisMendoza
Resident Rockstar
Resident Rockstar

@gauravnarchal - This works for me:

Measure = 
IF(
    SELECTEDVALUE('Table'[Product Code]) = "Online",
    10,
    0
)

It does seem that from Power Query -> Power BI, "ONLINE" -> "Online" so I didn't have to account for that. Is it different for you?






Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

Proud to be a Super User!



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