Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
trungle
New Member

Delete columns if they exist

I'm in the process of setting up a custom function to import multiple CSV files into one dataset. The files are all formatted in the same way, however they don't always contain the same columns. 

The columns are based on the time users spent on different statuses, and each CSV only includes the statuses for which a time was logged. So for example one may have the columns:

Online / Out of Office / Admin

and the next may have

Online / Meeting / Admin

I have a list of all the possible options that may come up so there aren't any unknowns.

Is there a way to edit the TransformColumnTypes and RemoveColumns parts of the query to allow for columns that may not be there - sort of like "if column "online" exists remove it"? 

Thanks in advance

2 ACCEPTED SOLUTIONS
dedelman_clng
Community Champion
Community Champion

What you may actually want is to "unpivot" all of your CSVs before merging them.  When you go to create measures, it could be problematic if you have a "wide" data set with specific columns, rather than a "narrow" dataset with a "TimeType" column and the value.  For example:

 

Emp Name   Online   Meeting   Offline   
Joe        2        1         1

Emp Name   Online    Away    OutofOffice
Mary       3         1       0.5        

 

"unpivots" (Transform tab, highlight columns, click "Unpivot Columns") to

 

EmpName  TimeType   Hours
Joe      Online     2
Joe      Meeting    1
Joe      Offline    1

EmpName   TimeType   Hours
Mary      Online     3
Mary      Away       1
Mary      Offline    0.5

 

which can easily be merged.

 

Hope this helps,

David

View solution in original post

Alternatively: Table.RemoveColumns has a parameter missingField with possible values (and shortcuts 0,1,2):

MissingField.Error (0)

MissingField.Ignore (1)

MissingField.UseNull (2)

 

It looks like you could use MissingField.Ignore (or its shortcut: 1).

Specializing in Power Query Formula Language (M)

View solution in original post

2 REPLIES 2
dedelman_clng
Community Champion
Community Champion

What you may actually want is to "unpivot" all of your CSVs before merging them.  When you go to create measures, it could be problematic if you have a "wide" data set with specific columns, rather than a "narrow" dataset with a "TimeType" column and the value.  For example:

 

Emp Name   Online   Meeting   Offline   
Joe        2        1         1

Emp Name   Online    Away    OutofOffice
Mary       3         1       0.5        

 

"unpivots" (Transform tab, highlight columns, click "Unpivot Columns") to

 

EmpName  TimeType   Hours
Joe      Online     2
Joe      Meeting    1
Joe      Offline    1

EmpName   TimeType   Hours
Mary      Online     3
Mary      Away       1
Mary      Offline    0.5

 

which can easily be merged.

 

Hope this helps,

David

Alternatively: Table.RemoveColumns has a parameter missingField with possible values (and shortcuts 0,1,2):

MissingField.Error (0)

MissingField.Ignore (1)

MissingField.UseNull (2)

 

It looks like you could use MissingField.Ignore (or its shortcut: 1).

Specializing in Power Query Formula Language (M)

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.