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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
hola
estoy intentando crear un parametro con fechas pero me sale este error, alguien sabe q estoy haciendo mal?
Solved! Go to Solution.
couple things:
- Use DateTime.From([Date]) - RangeStart and RangeEnd are already in the right format.
- What's the 0 supposed to do? Drop that
- Only one of the parameters can be inclusive, usually RangeStart. Make RangeEnd exclusive.
RangeStart <= DateTime.From([Date]) and DateTime.From([Date] < RangeEnd
Hi @ceciliatc
This error is because you are comparing data of type DateTime and DateTimeZone.
As lbendlin mentioned, you can use DateTime.From() function to convert DateTimeZone to DateTime type, moreover, you can also use DateTimeZone.RemoveZone() function to remove the time zone information of DateTimeZone, try the following code:
= Table.SelectRows(#"Changed Type", each DateTimeZone.RemoveZone([Date]) >= RangeStart and DateTimeZone.RemoveZone([Date]) <= RangeEnd)
Best Regards,
Jarvis Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Use DateTime.From( ) to make the data types match.
now I am getting this
couple things:
- Use DateTime.From([Date]) - RangeStart and RangeEnd are already in the right format.
- What's the 0 supposed to do? Drop that
- Only one of the parameters can be inclusive, usually RangeStart. Make RangeEnd exclusive.
RangeStart <= DateTime.From([Date]) and DateTime.From([Date] < RangeEnd
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 63 | |
| 51 | |
| 41 | |
| 20 | |
| 16 |
| User | Count |
|---|---|
| 122 | |
| 107 | |
| 47 | |
| 30 | |
| 24 |