Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Very new to power BI. Getting my feet wet. I created the following measure to calculate a sales total from two different fact tables
Solved! Go to Solution.
RankedSales = CALCULATE(
SUM(SalesData[Sales]) + SUM('NCS Sales'[Sales])
,Distributor[Include in Rankings?] = "Y"
,Windfalls[Exclude Windfall?] = ""
)
RankedSales = CALCULATE(
SUM(SalesData[Sales]) + SUM('NCS Sales'[Sales])
,Distributor[Include in Rankings?] = "Y"
,Windfalls[Exclude Windfall?] = ""
)
Thank you! This worked
As long as all of these tables are connected this should work:
RankedSales = CALCULATE( SUM(SalesData[Sales]) + SUM('NCS Sales'[Sales]), FILTER( ALL('Distributor', 'Windfalls'), 'Distributor'[Include in Rankings?] = "Y" && 'Windfalls'[Exclude Windfall?] = "" ) )
User | Count |
---|---|
12 | |
11 | |
8 | |
7 | |
6 |
User | Count |
---|---|
25 | |
19 | |
14 | |
10 | |
7 |