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 September 15. Request your voucher.
Hi,
Hi,
I have a time table with days_in_month field to count everyday in a month into a column and the value for this field is the same for each row belongs to a month.
Now i want to create a new measure by divide Total Sales / days_in_month but just only one time instead of dividing 31 times for Mar.
Assuming Total Sales for Mar = 1M$, now i want to create this measure(named avgSales) = Total Sales/31
Could anyone help me? thanks in advanced
Best regards,
J.
Solved! Go to Solution.
You only need to make sure the expression for days is a result obtained by the corresponding aggregation function.
Like the measure formula provided by ankitpatira or something like below.
avgSales = SUM( Table1[Sales] ) / MAX ( Table1[days in month] )
Best Regards,
Herbert
You only need to make sure the expression for days is a result obtained by the corresponding aggregation function.
Like the measure formula provided by ankitpatira or something like below.
avgSales = SUM( Table1[Sales] ) / MAX ( Table1[days in month] )
Best Regards,
Herbert
@pvtrinh89 in that case create measure as below. this will only work when you have dates only for one month.
= sum([SALESCOLUMN]) / DISTINCT([days in month])
User | Count |
---|---|
65 | |
60 | |
55 | |
54 | |
31 |
User | Count |
---|---|
180 | |
88 | |
70 | |
46 | |
46 |