Hello!! Here I am again. After several months with Qlik, we decided to change to PowerBI and I am a bit newbie.
Some answers of a survey we send to our clients are automatically discarded by the system and considered as Irrelevant. I am not able to configure the DAX formule to do it. In Qlik I have:
count({$<state = {'Irrelevant'}>} ID_sell) / count(ID_sell)
I know I need to study a lot, but coming from another language is hard 😞
Solved! Go to Solution.
@Shaglok try:
DIVIDE(
CALCULATE(COUNTROWS('Table'), 'Table'[state] = "Irrelevant"),
CALCULATE(COUNTROWS('Table'), REMOVEFILTERS('Table'[state]))
)
Hi @Shaglok,
Did the above suggestions help with your scenario? if that is the case, you can consider Kudo or Accept the helpful suggestions to help others who faced similar requirements.
If these also don't help, please share more detailed information to help us clarify your scenario to test.
How to Get Your Question Answered Quickly
Regards,
Xiaoxin Sheng
@Shaglok try:
DIVIDE(
CALCULATE(COUNTROWS('Table'), 'Table'[state] = "Irrelevant"),
CALCULATE(COUNTROWS('Table'), REMOVEFILTERS('Table'[state]))
)