Forum Discussion
Help Converting an Excel countifs function into Power BI
Hi Anonymous,
This should be possible with a calculated column formula. Share the link from where i can download your file.
- Anonymous8 years agoNot applicable
Hi,
Thanks guys for taking the time to have a look and try to help :)
Please try this link to the excel file. https://1drv.ms/x/s!AraHh-vwAl8dgU2WZDIaPRQmV0Bq
and this link for the extract from Powerbi. https://1drv.ms/x/s!AraHh-vwAl8dgVE6xMUtsW9SsAQH
I have managed to add an order line count. i still need the last 2 columns from the excel sheet adding to PowerBi .
The Table i am using in PowerBi is called Orderwell Summary.
- Zubair_Muhammad8 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 )- Zubair_Muhammad8 years agoCommunity Champion
Hi Anonymous
Try this calculated column for "duplicate pick locs for single item orders"
duplicate pick locs = VAR check = COUNTROWS ( FILTER ( ALL ( Orderwell_Summary ), Orderwell_Summary[Pick-Loc] = EARLIER ( Orderwell_Summary[Pick-Loc] ) && Orderwell_Summary[no. order lines] = 1 ) ) RETURN IF ( check >= 1, check, 0 )