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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I have 2 tables: 1st provides the saved amount, 2nd provides the current calculated amount and is a calculated table.
I want to create a new table that takes the saved amount from the 1st table and then uses the value from the 2nd table to fill in the values that are 0 in the 1st table.
The result should look like this:
Solved! Go to Solution.
I was able to get this to work by pivoting the table. Thanks for the info.
@Alicia_Anderson based on your info,
Use below dax to get the desired output as a Calcualted table.
Pan-Saved =
SELECTCOLUMNS(SAVED,
"Team",SAVED[Team],
"C1",SAVED[C1],
"C2",IF(SAVED[C2] = BLANK() ,LOOKUPVALUE(Plan[Plan],Plan[Team],SAVED[Team]),SAVED[C2]),
"C3",IF(SAVED[C3] = BLANK() ,LOOKUPVALUE(Plan[Plan],Plan[Team],SAVED[Team]),SAVED[C3]))
Let me know if that works for you.
Thanks,
Mohan V.
I was able to get this to work by pivoting the table. Thanks for the info.
Thanks for the quick response. I am getting the following error:
Current Plan-Saved is in this format:
@Alicia_Anderson check the datatype's of the columns that you are referring to.