Forum Discussion
mith_tina
4 years agoFrequent Visitor
How to change my datesbetween function dynamically?
i write my code like below. I connect with my date table but when i use date table i am getting total value. It is not filtering the value. so i use dates between function and use the table's date co...
- Anonymous4 years ago
Hi mith_tina ,
Please have a try.
Create columns first.
Year_column=Year(Candiadte[Added Date])Month_column=Month(Candiadte[Added Date])Then create a measure.
Current_month_Candidate = IF ( MAX ( EMT[MG] ) = "TC", ( CALCULATE ( COUNT ( Candidate[JReq] ), FILTER ( ALL ( Candiadte ), Candidate[JobLevel] IN { "B", "C", "D" } && Candiadte[month_column] = SELECTEDVALUE ( Candiadte[month_column] ) && Candiadte[Year_column] = SELECTEDVALUE ( Candiadte[Year_column] ) ) ) ) )If I have misunderstood your meaning, please provide your pbix file without privacy information and your desired output with more details.
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
deevaker
4 years agoResolver I
Hi mith_tina
You can try using below
aa=
Var _Start = DATE(Year(TODAY()),Month(TODAY()),1)
Var _End = DATE(Year(TODAY()),Month(TODAY()),DAY(TODAY()))
return
IF(EMT[MG]="LG",(CALCULATE(COUNT(Candidate[JReq]), Candidate[Job Family] in {"Analyst","Developer"},Candidate[Job level] in {"B","C","D"},DATESBETWEEN(Candiadte[Added Date],_Start,_End)))
Thanks,
Deevaker
+91-9711975011
- mith_tina4 years agoFrequent Visitor
THnaks Deevakar for your quick response. code is not working for me.,no value is showing. i am trying to show Month june's value.