Forum Discussion
Anonymous
3 years agoNot applicable
Need help with DAX-Command
Hi Community, We have two different columns. One column for articles, one column for stocks. The column article contains multiple entries for every week. We need a DAX-formula with output of th...
tamerj1
3 years agoCommunity Champion
Hi Anonymous
please try
New Column =
MINX (
FILTER (
CALCULATETABLE ( 'Table', ALLEXCEPT ( 'Table', 'Table'[Article] ) ),
'Table'[Stock] < 0
),
'Table'[Week]
)