Forum Discussion
vinaydavid
Helper III
6 years agoExcept function with a filter - unlogged employees
Hi All, Want to achieve the below result from the 2 unrelated tables. Table 1 - Logged employees list with logdate Table 2 - Complete list of employees (without logdate) Everyday I get a li...
amitchandak
Super User
6 years agovinaydavid , try like
measure = calculate(count(table1[Logdate]))+0
measure2 = calculate([measure], filter(table1,[measure] =0)
Or
measure = calculate(count(table1[Logdate]))
measure2 = calculate([measure], filter(all(table1),isblank([measure]))
Measure 2 is one you are looking for