Forum Discussion
Use parameter in DAX
Hi all,
I created 2 parameters, one for year(2019-2023) , one for month(1-12). And created a new measure :
- Anonymous3 years ago
Hi Anonymous ,
Please review your model relationships and create a measure.
Filter to Selected Date = var _lastdate=EOMONTH(DATE('Year Parameter'[Year Parameter Value],'Month Parameter'[Month Parameter Value],1),0) return DATEDIFF(SELECTEDVALUE('Shop Account Ledger'[G/L Date]),_lastdate,DAY)Then the result is as follows.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
4 Replies
- FreemanZSuper User
hi Anonymous
try like:
Filter to Selected Date = DATEDIFF( MAX( 'Shop Account Ledger'[G/L Date]), EOMONTH(DATE('Year Parameter'[Year Parameter Value],'Month Parameter'[Month Parameter Value],1),0),day)
- AnonymousNot applicable
It doesn't work.
- FreemanZSuper User
hi Anonymous
a bit strange, this was a verified proposal:
- AnonymousNot applicable
Hi Anonymous ,
Please review your model relationships and create a measure.
Filter to Selected Date = var _lastdate=EOMONTH(DATE('Year Parameter'[Year Parameter Value],'Month Parameter'[Month Parameter Value],1),0) return DATEDIFF(SELECTEDVALUE('Shop Account Ledger'[G/L Date]),_lastdate,DAY)Then the result is as follows.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.