Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Details:
Hi
I need value for for Bulk Geocoder row :
this value needs to calculated by summing up two entries coming from CPM View Extract(2) table , look for last column values, if we sum these two values, then that will be the value for AWS sum table Bulk Geocoder entry
How to sum these two entry value from CPM View Extract(2) table and assign it to the single entry Bulk Geocoder in AWS Sum table.
Pls help
Solved! Go to Solution.
Hi @Asha_2021 ,
Based on my understanding,you could create a calculated column similarly as below:
Column =
SWITCH (
'Table'[Application name ],
"bulk geocoder",
SUMX (
FILTER ( 'Table (2)', 'Table (2)'[Ord Application name ] = "e" ),
'Table (2)'[value1]
)
+ SUMX (
FILTER ( 'Table (2)', 'Table (2)'[Ord Application name ] = "f" ),
'Table (2)'[value1]
)
)
And you will see:
For the related .pbix file,pls see attached.
Best Regards,
Kelly
Did I answer your question? Mark my reply as a solution!
Hi @Asha_2021 ,
Based on my understanding,you could create a calculated column similarly as below:
Column =
SWITCH (
'Table'[Application name ],
"bulk geocoder",
SUMX (
FILTER ( 'Table (2)', 'Table (2)'[Ord Application name ] = "e" ),
'Table (2)'[value1]
)
+ SUMX (
FILTER ( 'Table (2)', 'Table (2)'[Ord Application name ] = "f" ),
'Table (2)'[value1]
)
)
And you will see:
For the related .pbix file,pls see attached.
Best Regards,
Kelly
Did I answer your question? Mark my reply as a solution!
@Asha_2021 You mentione "last column values". What indicates that the column values are "last"?
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.