Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I am getting a load error with this script, can someone assist. Error says script is missing a from???
[2015 Dates]:
LOAD Distinct
dated
FROM
[2015 sales ytd.xlsx]
(ooxml, embedded labels, table is [2015]);
2015:
Load *,
RowNo() as [Sale Day]
Resident[2015 Dates]
Order by dated desc
;
DROP Table [2015 Dates];
Thank you
2015:
Load *,
RowNo() as [Sale Day]
Resident [2015 Dates]
Order by dated desc
You just need to add a space after 'Resident'
2015:
Load *,
RowNo() as [Sale Day]
Resident [2015 Dates]
Order by dated desc
You just need to add a space after 'Resident'
Eish, thank you!!!
No probs, happy to help.
Thanks for marking my answer correct.