Forum Discussion
Set parameter = DateTime.LocalNow()
Hello!
Is there any way to set a parameter as a function? I want to set a parameter as today like this: DateTime.LocalNow().
As a default I want it to be today's date but I also want to be able to set the date manually if I want to see data from a certain date in my dashboards.
Thank you!
9 Replies
- bengineerNew Member
Create your paramenter and then right click it on the right under your queries and select 'Advanced Editor'. You can then put in a function. In my case, I needed it as text so I used the following-
--------------------------------------
let
Source = let
Source1 = DateTime.ToText(DateTime.LocalNow())
in
Source1meta [IsParameterQuery=true, Type="Text", IsParameterQueryRequired=true]
in
Source- powerEDCEFrequent Visitor
But...with this the parameter is transformed into a query?
- BhaveshPatelSuper User
That is currently not possible. Parameters only allow values with List of Values, Any Values or other Query as the suggested values. if you have only one value that is defined using DateTime.LocalNow() then you can use that value as a suggested values using Query Option in the parameters dialog box. However, You can use the list of values as the suggested values where you have to manually select the today's date to pass the parameter's value. It is not dynamic but with the parameters in the baby stage, it would be more convenient option.
- AnonymousNot applicable
Want to revive this thread... is this still possible in the latest PowerBI version?
- MmahachiAdvocate I
I'm trying to do this now as well. I think it must be possible
- franck_axiresFrequent Visitor
Hi you all M Gurus out there...
Has anyone managed to pass a DateTime.LocalNow() value as a parameter default ?
I'm trying it right now with the latest version of PBI Desktop but it seems the value is still interpreted as a String in the parameter editor.
Any clues ?
Best,
Franck
- inna_syscoHelper II
Any updates on this topic?
- DataSkillsResolver I
I got this working using the code below. Note that I used data type Date for my version.
let
Source = Date.From(DateTime.LocalNow())
meta [IsParameterQuery=true, Type=Date.Type, IsParameterQueryRequired=true]
in
Source