The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi Experts,
I have some averages and Count I have from source file via the T-SQL and I have to create a few measures in the DAX
Example in my case
TotalCntSales (I have this from SQL and in Dax showing up as Summation symbol)
Now I created Dax with Total sales of Sales_East, SalesWest
As a validity check I wanted to create measure with Total Other Sales = TotalCntSales - (Measure_Sales_East + Measure_Sales_West)
But I can only see the Measures Created in Dax not what I have derived from Source.
Workaround. I have created another measure in Dax for Total Sales but want to know if there is a smarter ways of doing it?
Thanks a lot.
@Anonymous , check the data type is the numeric type then you will see summarization sign
also in measure, you need to take aggregated column (source will give column unless it analysis service or PBI dataset)
example
sum(Table[TotalCntSales]) - (Measure_Sales_East + Measure_Sales_West)
User | Count |
---|---|
11 | |
8 | |
6 | |
6 | |
6 |
User | Count |
---|---|
23 | |
14 | |
13 | |
10 | |
8 |