The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
I have two tables without a relationship, one with dates and another with a date and movements, I need that when I filter several dates in the isolated table, those dates are filtered on the move. But there can be no internal relationship between them.
ex:i CALCULATE(count(Funcionarios[DateAdm]);
FILTER(Funcionarios;Funcionarios[DateAdm] ...... Has to be the same as the dates I select in another table
Solved! Go to Solution.
You may refer to the following DAX.
Measure = CALCULATE ( COUNT ( Funcionarios[DateAdm] ), FILTER ( Funcionarios, Funcionarios[DateAdm] IN ALLSELECTED ( Table2[Date] ) ) )
You may refer to the following DAX.
Measure = CALCULATE ( COUNT ( Funcionarios[DateAdm] ), FILTER ( Funcionarios, Funcionarios[DateAdm] IN ALLSELECTED ( Table2[Date] ) ) )