Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
Anonymous
Not applicable

Sum Totals using values from two different tables

I've looked around for a solution and tried the following, but it gives me this error which I don't understand because I am not using a "true/false" expression or any boolean values:   "a function 'FILTER' has been used in a True/False expression that is used as a table filter expression. This is not allowed."

 

I am simply trying to sum the totals of the Orders in the Rebate Table, based on the values of the Orders from the Flu_Shipped table.      The Rebate Table contains a subset of order #'s from the main shipping table.   

 

The "expected" result is that the sum should equal the value of the orders(ERP) column from the Rebate Table.    

 

But what is happening, is that the sum is totaling the value of all shipments...not just the subset of orders from the Rebate Table.    The rebate table does not contain any shipping values....so it needs to pick up those values from the "shipped" table. 

 

There is a relationship between "orders" on the shipped table, and "orders(erp)" on the rebate table.  

 

Measure = CALCULATE(SUM(Flu_Shipped_2018_to_2020[Shipped Price]),FILTER(Flu_Shipped_2018_to_2020,Flu_Shipped_2018_to_2020[Date Shipped]) in VALUES('Rebate Data'[Date Approved]))
 
 
 
total.pngmodel.png
1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous 

The filter is closing at the wrong place

It should like this


Measure = CALCULATE(SUM(Flu_Shipped_2018_to_2020[Shipped Price]),
FILTER(Flu_Shipped_2018_to_2020,Flu_Shipped_2018_to_2020[Date Shipped] in VALUES('Rebate Data'[Date Approved])))

 

I think you might have to use treatas. In place of in values. Just explore the link

https://docs.microsoft.com/en-us/dax/treatas-function

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@Anonymous 

The filter is closing at the wrong place

It should like this


Measure = CALCULATE(SUM(Flu_Shipped_2018_to_2020[Shipped Price]),
FILTER(Flu_Shipped_2018_to_2020,Flu_Shipped_2018_to_2020[Date Shipped] in VALUES('Rebate Data'[Date Approved])))

 

I think you might have to use treatas. In place of in values. Just explore the link

https://docs.microsoft.com/en-us/dax/treatas-function

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here
Anonymous
Not applicable

Hi @amitchandak 

 

The formula you gave did not work...but I beleive it was because my formula was not referencing the right fields.  

 

However, your suggestion to you use TREATAS was the perfect solution!   I literally was able to use the example formula on that page.  

 

One small issue:   The measure is returning all order #'s in the shipping table if I put that on my visual (which I need to).   How can I adjust the measure to ONLY include results where the order numbers match in both tables?   

 

You can see below, starting with Order "39"....

 

measure = CALCULATE(
SUM(Flu_Shipped_2018_to_2020[Shipped Price]),
TREATAS(VALUES(Flu_Shipped_2018_to_2020[Order]), 'Rebate Data'[Order (ERP)])
)
 
measure.png

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.