Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Anonymous
Not applicable

Count New Suppliers: Static Formula for Excel

Hello. I'm trying to convert a dyanmic new supplier Dax Formula to a more static formula for use in excel. The BI measure required user input for days to check for new suppliers(Time Frame Value in DAX)

 

My current DAX formula looks for new suppliers within user inputted days lookback(typically 90 days).

The Time Frame Value was the user inputted days to look back to check for new suppliers

 

 

I would like to compute new suppliers statically for a 3 month, 6 month, 1 year, and since the dawn of time for new suppliers.

 

Dax Code:

New Suppliers By Day =

VAR Supplier= VALUES(dfile[Supplier Name])
VAR Prior_Suppliers = CALCULATETABLE(VALUES(dfile[Supplier Name]),
                                     FILTER(ALL(dfile),
                                     dfile[Invoice Paid Date]>MIN(dfile[Invoice Paid Date])-[Time Frame Value] &&
                                     dfile[Invoice Paid Date]<MIN(dfile[Invoice Paid Date])))
Return
COUNTROWS(EXCEPT(Supplier,Prior_Suppliers))

 

Ideally fill in a similar table to this one below

New Suppliers
Dallas3 Month6 Month1 yearAbsolute
New York    
LA    
US Subtotal    
Rome    
Tokyo    
Shanghai    
Total    

 

Any help would be appreciated to make the formula static so i can use the measure in a excel report instead of BI. Thanks

1 REPLY 1

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

Top Solution Authors