Hi there,
I have this line in my Power Query which is returning the desired value from a single cell named "ProcessDate_From':
But I can't it to work using this ("ProcessDate" is the field name the SQL Db)...
...but this works fine:
(note this part of larger M code)
Any advice would be greatly appreciated.
Regards,
Robert
I have this line in my Power Query which is returning the desired value from a single cell named "ProcessDate_From':
Power Query:
strDateFrom = Text.From(Excel.CurrentWorkbook(){[Name="ProcessDate_From"]}[Content]{0}[Column1])
But I can't it to work using this ("ProcessDate" is the field name the SQL Db)...
Power Query:
[ProcessDate] = [strDateFrom]
...but this works fine:
Power Query:
[ProcessDate] = '2023-09-01'
Any advice would be greatly appreciated.
Regards,
Robert