The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
All respondents no brand (brand info) =
CALCULATE (
SUMX (
DISTINCT ( 'factBrandAwareness'[ObservationGUID] ),
FIRSTNONBLANK ( 'factBrandAwareness'[Weighted], 0 )
),
ALL ( 'dimBrandsByCountry'[Brand] )
)
Hi All
I am new to Power BI and DAX, I have the above code in an existing report I have picked up, would someone be able to break down what this doing on a generic level?
Thx!
Solved! Go to Solution.
@AGajree
The measure computes the total sum of the 'Weighted' column for all brands. It does this by accumulating the 'Weighted' values for each 'ObservationGUID' individually, considering only the first non-blank value for each 'ObservationGUID'.
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@AGajree
The measure computes the total sum of the 'Weighted' column for all brands. It does this by accumulating the 'Weighted' values for each 'ObservationGUID' individually, considering only the first non-blank value for each 'ObservationGUID'.
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
User | Count |
---|---|
28 | |
10 | |
8 | |
6 | |
5 |
User | Count |
---|---|
35 | |
14 | |
12 | |
9 | |
7 |