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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
erhan_79
Post Prodigy
Post Prodigy

Need Formula

Hi there ;

i have a column as below and i need to create a measure like that ;

 

If [Group Code] column is "30"  give result  "A"

If [Group Code] column is "50"  give result  "B"

ıf not give result "blank"

 

caps1.JPG

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@erhan_79 , if [group code]  measure the use as is else use max(Table[group code] )

new measure  =

switch( true() ,
max(Table[group code] ) ="30" , "A" ,
max(Table[group code] ) ="50" , "B" ,
blank()
)

 

 

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@erhan_79 , if [group code]  measure the use as is else use max(Table[group code] )

new measure  =

switch( true() ,
max(Table[group code] ) ="30" , "A" ,
max(Table[group code] ) ="50" , "B" ,
blank()
)

 

 

amitchandak
Super User
Super User

@erhan_79 , Try a new column like

 

switch( true() ,
[group code] ="30" , "A" ,
[group code] ="50" , "B" ,
blank()
)

dear @amitchandak ;

thank you but , i have a column and want to create a measure , i think your  formula for creating new column 

 

i can not create a measure from your formula , could you pls check 

 

thanks 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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