@sam nick Thanks for using Microsoft Q&A forum and posting your query.
The reason for showing the value of Id
column as null is beacause by default data flow detecting it as an integer, where as the actual value of Id
column is BIGINT/LONG
. In dataflow when source value is not compatible with the provided/detected datatype then the value is displayed as null in the preview or in the expression output.
To resolve this issue, please go to your Source
-> Projection
- click on Import Projection
this will import the actual datatype as LONG
and the value will be displayed as expected.
Please Note: Importing the schema here will override the projection defined in the dataset. The dataset object won't be changed.
Default datatype detection:
Data type detection after importing Projection:
Data preview after importing Projection:
Hope this info helps.
Please don’t forget to Accept Answer
and Yes
for "was this answer helpful" wherever the information provided helps you, this can be beneficial to other community members.