Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Dear All. I am stuck with a unique
I need to multiply countries revenue with a % factor while the rows are correct, column total incorrect.
So i used DAX of SUMX but it has error of 1M + rows.
I have two sources of Power BI dataset and factor% multipliers comes from an online excel file.
Solved! Go to Solution.
Hi @tusharpk99 ,
Below is my table:
Below is my table1:
Merge the two tables into a single table(Left Outer):
The following DAX might work for you:
Measure =
SUMX(
Merge1,
Merge1[Revenue] * Merge1[Table1.Fac]
)
The final output is shown in the following figure:
Best Regards,
Xianda Tang
If this post helps , then please consider Accept it as the solution to help the other members find it more quickly.
Hi @tusharpk99 ,
Below is my table:
Below is my table1:
Merge the two tables into a single table(Left Outer):
The following DAX might work for you:
Measure =
SUMX(
Merge1,
Merge1[Revenue] * Merge1[Table1.Fac]
)
The final output is shown in the following figure:
Best Regards,
Xianda Tang
If this post helps , then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
If you do it in column, It will work. bring the % factors in your dataset based on the relationship and then create a calculated column to multiply.
how to bring % factors in the dataset from the excel file ? i tried but it shows the error.
Column cannot be pushed to the remote data source and cannot be used in this scenario
you may make a relationship based on country names to connect both the tables and then bring the % factors in power bi dataset query table using lookup value or related dax function in a new calculated column.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
10 | |
10 | |
9 | |
9 |
User | Count |
---|---|
20 | |
13 | |
13 | |
11 | |
8 |