Forum Discussion

lennox25's avatar
lennox25
Post Patron
3 years ago
Solved

Create a column filtering values from another column

Hi,  I have a table (see below). I need to create another 3 columns filtering as below., so that say for anything >0 and <1000 would only have those values in there (20, 129, 356, 456, 789 and 999 a...
  • johnt75's avatar
    3 years ago

    You can add columns like

    Less than 1000 =
    IF ( 'Table'[Unit] > 0 && 'Table'[Unit] < 1000, 'Table'[Unit] )