cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
spandy34
Post Patron
Post Patron

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
Post Patron
Post Patron

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
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors