Forum Discussion
Anonymous
8 years agoNot applicable
Help Converting an Excel countifs function into Power BI
Hi all, I am new to the forum and new to Power-Bi and I really need a little help. I have been given an excel sheet and asked to convert it to Power-Bi. I am really stuck with 1 formula in pa...
Zubair_Muhammad
8 years agoCommunity Champion
Hi Anonymous
Try this calculated column for "number of single picks in aisle for single item orders"
number of single picks =
VAR check =
COUNTROWS (
FILTER (
ALL ( Orderwell_Summary ),
Orderwell_Summary[Column1] = EARLIER ( Orderwell_Summary[Column1] )
&& Orderwell_Summary[no. order lines] = 1
)
)
RETURN
IF ( check >= 1, check, 0 )Anonymous
8 years agoNot applicable
Hi,
That seems to work for an overall count on all records but when i use my closed date filter / slider it does not filter this new column qty. it still reads the figure for all data.
Therefore one item will have a figure like 2192 next to it when i am expecting between 1 and 5 for a given day?