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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello All,
I am unble to change Date parameter format while passing to SQL Query.
MY database Date format is "YYYY-MM-DD" and Parameter passes with Format "DD-MM-YYYY"
Resulting into below error
DataSource.Error: Microsoft SQL: Error converting data type nvarchar to datetime.
Can someone please help to resolve this issue
Thanks
Solved! Go to Solution.
Hi rajahreemane,
You could try to change parameter data type to Text like below
Or you could define parameter type in M code like below
let GetData=(para1 as text)=>
let
Source = Sql.Database("servername", "newsql", [Query="select dayt, name from timeformat where dayt= '"¶1&"' "])
in
Source
in GetData
Best Regards,
Zoe Zhi
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi rajahreemane,
You could try to change parameter data type to Text like below
Or you could define parameter type in M code like below
let GetData=(para1 as text)=>
let
Source = Sql.Database("servername", "newsql", [Query="select dayt, name from timeformat where dayt= '"¶1&"' "])
in
Source
in GetData
Best Regards,
Zoe Zhi
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 17 | |
| 9 | |
| 9 | |
| 7 | |
| 7 |