Forum Discussion
PhilB
9 years agoKudo Collector
Help understanding Power BI error messages
Hi, So i have a dataset which is working, i can connect to it from the power BI desktop on my work machine and i have set up a scheduled refresh which is working also. The data set refreshes...
Anonymous
9 years agoNot applicable
Hi Phil,
I had similar issue before and it came from the column data type (which I hard coded) not matching with its record data type.
For example = Table.AddColumn(YearNumber , "Quarter", each "Q" & Number.ToText(Date.QuarterOfYear([Date])),type number), obviously it should type text.:cattongue:
Also, I found that it does not like Int64.Type.
Nor sure if it applies to your case.
Regards,
Anna
kyle705
8 years agoFrequent Visitor
Thanks Anna... Hard coded Int64.Type. seemed to be the problem for me!!!