Forum Discussion
Query filters
- 6 years ago
You can modify the code directly in the formula line if you are wanting to change those filters. I think the reason you don't see the gear is that the GUI for filtering only allows 2 basic filters and the filter that is applied in that step is mor complex that the UI can display.
= Table.SelectRows(#"Added Custom", each ([#"Credit % Spent"] <> null and not Number.IsNaN([#"Credit % Spent"]) and [#"Credit % Spent"] <> -#infinity and [#"Credit % Spent"] <> 0 and [#"Credit % Spent"] <> #infinity))
Anyone have an answer? Thank you.
- jdbuchanan716 years agoSuper User
You can modify the code directly in the formula line if you are wanting to change those filters. I think the reason you don't see the gear is that the GUI for filtering only allows 2 basic filters and the filter that is applied in that step is mor complex that the UI can display.