I am trying to retrieve month from parametrized date , by using :
vba!month(${parDate}) or
vba!datePart(m,${parDate}) or
vba!format(${parDate},'mmm')
None of the above is working.Can you guide, what is the right approach to do this?
I am trying to retrieve month from parametrized date , by using :
vba!month(${parDate}) or
vba!datePart(m,${parDate}) or
vba!format(${parDate},'mmm')
None of the above is working.Can you guide, what is the right approach to do this?
Copyright © 2021 Jogjafile Inc.
(try uppercase 'MM' rather than 'mmm' - even 'mm' is wrong as it will look for minutes rather than months)
This question and answer looks at working with dates: Changing a date format to a shorter date
MSDN is a good reference for the available
vba
functions inmdx
that you can use to play around with dates. Current link is here: http://msdn.microsoft.com/en-us/library/hh510163.aspxI'm assuming you have a date dimension and would like to create a calculated measure that returns a numeric value that is the month.
Using
AdWks
I can do the following:But maybe you'd just like to play around with today's date and extract the month: