Forum Discussion
How to Remove All columns Error while importing Json table
- 7 years ago
Hi Negi1984,
Why not just following the built-in functions? Please refer to the snapshot below.
Best Regards,
Dale
Hi Donsvensen,
Thanks a lot for your prompt feedback. I check the link but unable to understand.
Could you please assist , what modification exactly I need to require in 3rd line ?
let
Source = Json.Document(Web.Contents("XXXXXXXXXXXXXX")),
data1 = Source[data],
Table = Table.FromRecords(data1)
in
Table
My Headers in Data are mentioned below :-
| dataComplete |
| finishTime |
| hostName |
| jobExecutionId |
| jobExecutionNumber |
| jobFinishedEventId |
| jobInstance |
| jobQueuedEventId |
| jobStartedEventId |
| queuedTime |
| ran |
| resultCode |
| startTime |
| track |
Thank you once again for your support.
Hi
Properly looks something like this
Table =Table.FromRecords(data1, {"dataComplete", "finishTime", "hostName", "jobExecutionId", "jobExecutionNumber", "jobFinishedEventId", "jobInstance", "jobQueuedEventId", "jobStartedEventId", "queuedTime", "ran", "resultCode", "startTime", "track"}, {"dataComplete", "finishTime", "hostName", "jobExecutionId", "jobExecutionNumber", "jobFinishedEventId", "jobInstance", "jobQueuedEventId", "jobStartedEventId", "queuedTime", "ran", "resultCode", "startTime", "track"}, MissingField.UseNull )
Hope this helps you
/Erik
- Negi19847 years agoRegular Visitor
Hi,
I replace the below code with my PQ code. but its giving me another error like below :-
- donsvensen7 years agoSkilled Sharer
Hi
Could you share a screenshot from your previous step ?
/Erik
- Negi19847 years agoRegular Visitor
Hi,
Please find the snapshot of previous steps :-