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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

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
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.