Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello comunity,
Hope that you are doing well.
I would like to get a date and concatenate with , I would like the result having text format.
I did that, however I get this error.
= let
Source1 =Text.Combine(Date.ToText(DateTime.Date(DateTime.LocalNow()),"yyyy-MM-dd"),"T00:00:00Z")
in
Source1
meta [IsParameterQuery=true, Type="Text", IsParameterQueryRequired=true]
I see that for using Text.Combine for In, this function receive as a List
I changed like that , then I cannot get a good result.
How can I get it ?
Thanks a lot.
Solved! Go to Solution.
When I finally had to post my problem, and I find a few minutes the result.
Here is below. I add the " { } in the Text.combine because , it's considered as list.
Thanks, It could help someone else.
Hi @Anonymous
Try this instead:
let
Source = DateTime.LocalNow(),
DateOnly = Date.From(Source),
AdjDateTime = Date.ToText(DateOnly, "yyyy-MM-ddT00:00:00Z")
in
AdjDateTime
When I finally had to post my problem, and I find a few minutes the result.
Here is below. I add the " { } in the Text.combine because , it's considered as list.
Thanks, It could help someone else.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 53 | |
| 47 | |
| 30 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 88 | |
| 72 | |
| 38 | |
| 26 | |
| 24 |