Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
8 years ago
Solved

Help: formula find or search

Hello!! Im new in PBI, I want someone could help me with this:   I have a column that calculates with numbers that have two decimals, I need (without considering the decimals) to take the last thr...
  • ricardocamargos's avatar
    ricardocamargos
    8 years ago

    Hi Anonymous,

     

    Try this code creating a new column:

    Test = IF(RIGHT(INT(Table1[Column1]); 3) = "000"; 1; 0)

     

    After that you can filter the report or page by this new column.