Forum Discussion

okusai3000's avatar
okusai3000
Helper IV
5 years ago
Solved

Filter a Measure with another Measure

Hello everyone,   I've spent the last 2 hours trying to find an answer but I couldn't find it.   The request is simple: I need to count only those Items with "Antiguedad" less than 180.   I tri...
  • AllisonKennedy's avatar
    5 years ago
    What does your raw data look like and where are you trying to use this filter/measure?

    If you look at your Fact table, is there more than one row per Marca? Your measure will first calculate the Antiguedad for each row in your Fact Equipos table, and if the Antiguedad <-180 for that specific row, then the ID will be counted (though I'm not sure which table that ID is in? Your measure seems to have some syntax errors). If Antiguedad is a grouped measure by Marca, then you may need to put your FILTER(VALUES(Marca), [Antiguedad]<-180) and see if that gives the result you expect.

    If not, please provide more info about your input data and show the current result you have achieved so far.