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
joep78
Helper III
Helper III

Insert value based on different columns

Hi there,

 

I’m relatively new using PBI and hopefully somebody can help me figuring out how to write a DAX statement.

 

My table name is ‘AnswerLine’ and within this table I’ve got a question column (Question) and an answer column (Answer)

I want to do a measure that when a combination of different answers is set on Y, a column (value) will get a value. If the answer is N, there is no action needed.

 

Example:

Question “ONG000.04” = Y & “ONG000.05” = Y then Value = 2

I’ve got 9 different combinations and in total we have 23 different questions.

 

Not sure if anybody can help me out with this input. If more input is needed, please let me know!

 

Thanks in advance for response!

1 ACCEPTED SOLUTION
natabird3
Continued Contributor
Continued Contributor

@joep78 

Maybe try this primitive solution:

Measure = IF(CONTAINS(AnswerLine,AnswerLine[Answer],"Y"),1,0)
Measure 2 = COUNTX(AnswerLine,"Y")
Capture.JPGnew.JPG

View solution in original post

3 REPLIES 3
natabird3
Continued Contributor
Continued Contributor

@joep78 

Maybe try this primitive solution:

Measure = IF(CONTAINS(AnswerLine,AnswerLine[Answer],"Y"),1,0)
Measure 2 = COUNTX(AnswerLine,"Y")
Capture.JPGnew.JPG

Thanks for your reply, the following solutions based on your answer works for me:

Measure= IF(
AND(
OR(
CONTAINS(BaseORderAnswerLine;BaseORderAnswerLine[answer];"Ja";BaseORderAnswerLine[Question];"ONG000.04");
CONTAINS(BaseORderAnswerLine;BaseORderAnswerLine[answer];"Ja";BaseORderAnswerLine[Question];"ONG000.05"));
CONTAINS(BaseORderAnswerLine;BaseORderAnswerLine[answer];"Ja";BaseORderAnswerLine[Question];"ONG020")
)
;1;0)

 

with this, I have the right meausure output! 

 

 

Anonymous
Not applicable

Adding a conditional column in the query editor perhaps?

 

https://support.office.com/en-us/article/add-a-conditional-column-power-query-f2422ed1-f565-4e64-ba3...

 

If this works for you, please mark my answer as sovled. Cheers

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.

Top Solution Authors