cmcreynolds
Active Member
- Joined
- May 21, 2015
- Messages
- 295
I am trying to use part of the filename in the data - I split the column and used delimiters to obtain the text I need. Now I'd like it repeated as I expand the "Content". When I tried this 5 months ago, the text repeated just fine, but now it disappears when I expand the "Content" column.
Here are the lines of code after I removed other columns:
#"Removed Other Columns" = Table.SelectColumns(#"Renamed Columns",{"ClientID", "Content"}),
#"Combined Binaries" = Binary.Combine(#"Removed Other Columns"[Content]),
#"Imported CSV" = Csv.Document(#"Combined Binaries",[Delimiter=",",Encoding=1252]),
#"Promoted Headers" = Table.PromoteHeaders(#"Imported CSV"),
#"Changed Type2" = Table.TransformColumnTypes(#"Promoted Headers",{{"First Name", type text}, {"Last Name", type text}, {"Student Number", type text},...etc. But no "ClientID"
Any idea why it wouldn't repeat?
Here are the lines of code after I removed other columns:
#"Removed Other Columns" = Table.SelectColumns(#"Renamed Columns",{"ClientID", "Content"}),
#"Combined Binaries" = Binary.Combine(#"Removed Other Columns"[Content]),
#"Imported CSV" = Csv.Document(#"Combined Binaries",[Delimiter=",",Encoding=1252]),
#"Promoted Headers" = Table.PromoteHeaders(#"Imported CSV"),
#"Changed Type2" = Table.TransformColumnTypes(#"Promoted Headers",{{"First Name", type text}, {"Last Name", type text}, {"Student Number", type text},...etc. But no "ClientID"
Any idea why it wouldn't repeat?