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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
Anonymous
Not applicable

Can not replace Table with in column--- need help for project

Ra20241295_0-1645212236004.png

  i connceted to sharepoint list, tried to import along with data versions( share point version history ) so that i can see past modified data. 
when I import and kept expanding properties and required fields i came across this { " Table " } neither i can expand this nor I can replace it with something else. this is giving my count wrong.. 
for now I used calculate(count (column-name)), filter() ) -1 --- subtracted  1 to make count look fine but its not solution, i want to remove or replace that Table .....

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

above solution reducing the record count, 
I got soulution using  = Table.AddColumn(#"Removed Other Columns", "GetValue2",each if Value.Is([V.properties.field_x005f_18], type table) then null else [V.properties.field_x005f_18])  

= Table.AddColumn(#"source/before step, "column-name",each if Value.Is([V.properties.field_x005f_18], type table) then null else [V.properties.field_x005f_18])

View solution in original post

3 REPLIES 3
v-kkf-msft
Community Support
Community Support

Hi @Anonymous ,

 

When your column contains data of both table type and other types (example Text/Number), there will be no extended table button in the column. 

 

vkkfmsft_0-1645420390617.png

 

You can use the following code to remove rows of the table type.

 

= Table.SelectRows(#"Filtered Rows", each not Value.Is(Value.FromText([Value]), type table))

vkkfmsft_1-1645420463426.png

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Anonymous
Not applicable

above solution reducing the record count, 
I got soulution using  = Table.AddColumn(#"Removed Other Columns", "GetValue2",each if Value.Is([V.properties.field_x005f_18], type table) then null else [V.properties.field_x005f_18])  

= Table.AddColumn(#"source/before step, "column-name",each if Value.Is([V.properties.field_x005f_18], type table) then null else [V.properties.field_x005f_18])

jaipal
Resolver III
Resolver III

@Anonymous Click on the Button 

jaipal_0-1645412165474.png

 Text Filters --> Does Not Equal...

 

 

play with it.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.