I am attempting to sum two values across two tables. I have a pending amount calculated for both tables, and now need to see the sum of both calculated fields in a multi-row card. Table 1 gives me a dollar amount, table 2 gives me a dollar amount. I need the sum of the two amounts.
Table 1 calculated field:
Pending Tender (FTL-CS) = IF('ICS Que'[DeliveryDate]=BLANK(),BLANK(),'ICS Que'[TenderedAmount])
Table 2 Calculated field:
Pending Tender (FTL-AP) = IF('AP Que'[DeliveryDate]=BLANK(),BLANK(),'AP Que'[TenderedAmount])
Sum of both field attempt:
Pending Tender (FTL) = CALCULATE(SUM('AP Que'[Pending Tender (FTL-AP)]&SUM('ICS Que'[Pending Tender (FTL-CS)])))
I know it is in my syntax but I dont know how to fix it.