Forum Discussion
fansari16
7 years agoFrequent Visitor
Clustered column chart help
Hello BI community, I am new to POwer BI & I am loving it so far. Recently I have encountered a problem. I am trying to compare results of two quarters ( from a survey). When I draw two separate...
- 7 years ago
Using your sample document this Measure will give the correct percentages.
PerOfQuarter = VAR QtrTotal = CALCULATE ( COUNT('Form Responses Q1 and Q2'[Timestamp]) , ALLEXCEPT ( 'Form Responses Q1 and Q2', 'Form Responses Q1 and Q2'[Quarter] ) ) RETURN COUNT('Form Responses Q1 and Q2'[Timestamp]) / QtrTotal
stretcharm
7 years agoMemorable Member
Using your sample document this Measure will give the correct percentages.
PerOfQuarter =
VAR QtrTotal =
CALCULATE ( COUNT('Form Responses Q1 and Q2'[Timestamp]) , ALLEXCEPT ( 'Form Responses Q1 and Q2', 'Form Responses Q1 and Q2'[Quarter] ) )
RETURN
COUNT('Form Responses Q1 and Q2'[Timestamp]) / QtrTotalfansari16
7 years agoFrequent Visitor
stretcharm You are a genious. I got it. Thank a lot. I deeply appreciate your help.
- stretcharm7 years agoMemorable Member
Hopefully you've got it working now.
Check out this list of PowerBI training links that will help you
https://community.powerbi.com/t5/Desktop/Good-Source-to-Learn-DAX/m-p/539642#M253384