I have a problem with a function that I'm trying to do to concatenate a date and a number that is unique. I have a date row (row 3) that when populated I want to create an order # based on that date and the # of orders that day. It should look like this "40977-1"
Here is the calculation that I have inputted in the order # feild.
=IF(ISBLANK(B3),"",(B3&"-"&COUNTIF(B:B,B3)))
The problem is that this returns only the total # of orders on that day and I want it to count up and number each order after the dash as they are posted. Thanks.
Bookmarks