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
spandy34
Responsive Resident
Responsive Resident

IF Lookup Column

Hi

I want to create a column where in the column named Test it returns the Net Premium Value if the Policy Code includes the letters LEX.  The format of the data in the Policy Code could be M05LEX, M11LEX, M10LEX  - the DAX below isnt working. any ideas ?

 

Test = If(INS_Premium[PolicyCode]="LEX",'INS_Premium'[NetPremium])

 

spandy34_0-1659709882926.png

 

@amitchandak @goncalogeraldes @tamerj1 

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

Hi @spandy34 
Hope you're doing fine.

Please try

Test =
IF (
    CONTAINSSTRING ( INS_Premium[PolicyCode], "LEX" ),
    'INS_Premium'[NetPremium]
)

View solution in original post

2 REPLIES 2
spandy34
Responsive Resident
Responsive Resident

thank you very much that has worked @tamerj1 

tamerj1
Super User
Super User

Hi @spandy34 
Hope you're doing fine.

Please try

Test =
IF (
    CONTAINSSTRING ( INS_Premium[PolicyCode], "LEX" ),
    'INS_Premium'[NetPremium]
)

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.