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 PBI Users,
I am getting the wrong columnb totals when i create a measure between two different tables. See Attached picture. How do i solve this.
The formula i have used in shown in the formula bar.
Kindly this is urgent if someone could assist at the soonest
Thanks
Solved! Go to Solution.
Hi @Patelnitya
Please use the following DAX :
MeasureName = SUMX ( TableName, CALCULATE ( SUM(TableName[ColumnName1]) * SUM(TableName[ColumnName2 ]) ) )
This should work...
Thanks,
Himanshu
Hi @Patelnitya
Please use the following DAX :
MeasureName = SUMX ( TableName, CALCULATE ( SUM(TableName[ColumnName1]) * SUM(TableName[ColumnName2 ]) ) )
This should work...
Thanks,
Himanshu
This works perfect.
Thanks Himanshu.