The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Solved! Go to Solution.
@Anonymous
Try something like this.
MeasureValue =
CALCULATE (
DIVIDE ( 30, COUNTA ( 'Phone Call Data'[count] ) ),
MONTH ( 'Phone Call Data'[Month] ) = 1 // or 'Phone Call Data'[Month]="January"
)
@Anonymous ,
Try a below DAX:
CALCULATE(DIVIDE([30], COUNTA('Phone Call Data'[count])),FILTER(DateTable,MONTH(DateTable[DateColumn])=1))
@Anonymous , based on date format you put a filter
//Jan this year with date
calculate(
DIVIDE([30], COUNTA('Phone Call Data'[count])), eomonth('Phone Call Data'[Date],0)=eomonth(date(year(today()),1,1),0))
calculate(
DIVIDE([30], COUNTA('Phone Call Data'[count])), 'Phone Call Data'[Month] =1)
calculate(
DIVIDE([30], COUNTA('Phone Call Data'[count])), format('Phone Call Data'[Date],"mmm") ="Jan")
calculate(
DIVIDE([30], COUNTA('Phone Call Data'[count])), format('Phone Call Data'[Date],"mmm-yyyy") ="Jan-2020")
calculate(
DIVIDE([30], COUNTA('Phone Call Data'[count])), 'Phone Call Data'[Month Name] ="January")
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
112 | |
79 | |
74 | |
50 | |
40 |
User | Count |
---|---|
135 | |
120 | |
75 | |
65 | |
64 |