Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Community,
Having not much experience with DAX I am having trouble with the following;
Below are my sample tables, their relationships and the values
I would like to be able to multiply the "Raw Data" in the data table by the "Weightings" in the weightings table.
Should this be a measure or calculated column?
Do I need to create an additional table in modeling to do this?
Any help would be much appreciated!!
Solved! Go to Solution.
Hi @Anonymous ,
I dont think you need any additional table.
There is already a relationships between these two tables.
You can use either a quick measure , measure or calculated column for this :
1. Quick Measure
2. DAX measure
Measure = Sumx('Data Table','Data Table'[Raw Data]*related(weightings[weightings]))3. calculated column
Column = 'Data Table'[Raw Data]*RELATED(weightings[weightings])
the answers is going to be the same.
Look at my output.
let me know for any question.
Thanks,
Tejaswi
Hi @Anonymous ,
I dont think you need any additional table.
There is already a relationships between these two tables.
You can use either a quick measure , measure or calculated column for this :
1. Quick Measure
2. DAX measure
Measure = Sumx('Data Table','Data Table'[Raw Data]*related(weightings[weightings]))3. calculated column
Column = 'Data Table'[Raw Data]*RELATED(weightings[weightings])
the answers is going to be the same.
Look at my output.
let me know for any question.
Thanks,
Tejaswi
@Anonymous
This works as I need thanks!
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 54 | |
| 47 | |
| 38 | |
| 16 | |
| 15 |
| User | Count |
|---|---|
| 82 | |
| 71 | |
| 38 | |
| 28 | |
| 25 |