Forum Discussion

varelapablo90's avatar
varelapablo90
Helper II
4 years ago

Please Help: Exclude insignificant values from dataset

 

Hello I have the following Dataset and I would like to focus only on the items that do have at leat 5 or more entries in my table (my existing filters should apply also)

How can I do that?

Could it be done also by doing a slicer like the one in the picture where I am only focusing on items with price difference of over 500? so user could change from 5 to another value?

PO_lines field is currently the count of every item in my dataset and I do have some filters applied.

 

5 Replies

  • Hi varelapablo90 ,

    The compressed package you shared can be downloaded successfully, but it cannot be opened, it seems that the format is incorrect.

    In my understanding, you want to use a slicer to filter a measure(if it's a column, you can directly put it in the slicer), I create a sample.

    Profit is a measure in the sample.

    Here's my solution.

    1.Create a parameter.

    Set the minimum, maximum and increment value based on your data, here I refer to the min and max of Profit.

    2.Create a new measure.

    Check = IF('Table'[Profit]>='Parameter'[Parameter Value],1,0)

    Put the measure in the visual filter and select its value to 1.

    3.Put the parameter in the slicer, the visual will be filtered by changing the value of the parameter.

    I attach my sample below for reference.

     

    Best Regards,
    Community Support Team _ kalyj

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

     

     

    • varelapablo90's avatar
      varelapablo90
      Helper II

       Hello_ kalyj

       

      I have followed your steps and certainly this seems to go in the direction of what need, however It still does not work but now probably due to an issue on the masure.

      How can I make my measure to work correctly, calculating the count of PO_Lines for each material and considering all the other filters from my page?

       

      Check = IF(Merge2_PO_Item[PO_Lines]>='Parameter_PO_Lines'[Parameter_PO_Lines Value],1,0)
       
      PO_Lines is my measure, just counting all the records.
      PO_Lines = count(Merge2_PO_Item[Identification])