Forum Discussion
Anonymous
8 years agoNot applicable
#"Filtered Rows" = Table.SelectRows(#"Expended Row", each true)
Hi, I encountered this query in the advance query editor. #"Filtered Rows" = Table.SelectRows(#"Converted to Table", each true) I have no clue what "each true" means and it is taking 20 lines from...
v-yulgu-msft
8 years agoMicrosoft Employee
Hi Anonymous,
In my test, above query returned the same rows as that returned by its previous step. Usually, we add a filter condition which returns bloon values "True/False" after "each" function. But "each true" mean it is always "True", in other words, there is no filter, so, it would return all data rows without filtering.
In your scenario, please check the result of previous step #"Converted to Table". It should also return 20 lines.
Regards,
Yuliana Gu
"
- Anonymous8 years agoNot applicable
Hi v-yulgu-msft
Thanks for the reply. There are no boolean values in my data and it is still taking off 20 rows of data. That is was I was curious.