Uploading of dataset Datetime type
saitoh183 opened this issue · 2 comments
When i use Out-PowerBI to upload the result for the column that are set to datetime cannot be used in Hierarchy (by month, yeah, etc)
When i upload the CVS of the same dataset using GetData from PowerBi, i get the options. (same In PowerBi Desktop)
using Out-PowerBI:
Using GetData
I also tried using Out-PowerBi with the CSV and its the same problem.
Is this a limitation or there is something im missing?
if it can help, here is my CSV
AllRequestTable..txt
Hi,
You are right, but it seems to be a limitation on the PowerBI API, please open a UserVoice request here:
https://ideas.powerbi.com/forums/265200-power-bi-ideas/suggestions/6802457-uservoice
As an alternative you could create those columns in powershell and upload them with out-powerbi, ex:
Import-Csv $file.FullName | select @{Label="Year";Expression={$_.Closed.Year}}, *
Thanks