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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Anonymous
Not applicable

antoher newbie question

Hello!! 

 

I have a question, which for sure will be very easy. We send a survey with every sale, and I need to extract the satisfaction of these surveys.

 

In Qlik we have it with the formula

count({$<survey_response = {'5', '4'}>} ID_sell / count({$<survey_response = {'1', '2', '3', '4', '5'}>} ID_sell)

 

How can I do it in DAX?

1 ACCEPTED SOLUTION
SpartaBI
Community Champion
Community Champion

MEASURE = 
DIVIDE(
CALCULATE(COUNTROWS('Table'), 'Table'[survey_response] IN {4,5}),
CALCULATE(COUNTROWS('Table'), 'Table'[survey_response] IN {1,2,3,4,5})
)


2022-05-19 17_30_22-Re_ Need help on DAX function with measure vs colu... - Microsoft Power BI Commu.png


Full-Logo11.png

SpartaBI_3-1652115470761.png   SpartaBI_1-1652115142093.png   SpartaBI_2-1652115154505.png

Showcase Report – Contoso By SpartaBI

View solution in original post

3 REPLIES 3
SpartaBI
Community Champion
Community Champion

MEASURE = 
DIVIDE(
CALCULATE(COUNTROWS('Table'), 'Table'[survey_response] IN {4,5}),
CALCULATE(COUNTROWS('Table'), 'Table'[survey_response] IN {1,2,3,4,5})
)


2022-05-19 17_30_22-Re_ Need help on DAX function with measure vs colu... - Microsoft Power BI Commu.png


Full-Logo11.png

SpartaBI_3-1652115470761.png   SpartaBI_1-1652115142093.png   SpartaBI_2-1652115154505.png

Showcase Report – Contoso By SpartaBI

Anonymous
Not applicable

Thanl you!! That worked.

@Anonymous my pleasure 🙂
Check out my showcase report - got some high level stuff there. Sure you will find there a lot of cool ideas. Please give it a thumbs up over there if you liked it 🙂
https://community.powerbi.com/t5/Data-Stories-Gallery/SpartaBI-Feat-Contoso-100K/td-p/2449543

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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

Top Solution Authors