What's new
Fantasy Football - Footballguys Forums

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Excel question (1 Viewer)

Captain Quinoa

Footballguy
I'm sure that I'm missing something obvious here, but I can't make this work.

Say on Sheet1 I have downloaded all of my open orders so each row represents an open order line. On Sheet2 I want to display this by item. So I have my part numbers listed in a column and I use a SUMIFS to total up the orders by item. Now I want to show how many are past due. So I add 'Sheet1'!$F:$F,"<6/22/2015" to the SUMIFS so that it only pulls orders due prior to today. This works fine, but is there a way to automate it using TODAY() or something else so that I don't have to go in every day and change the date in the formula?

TIA

 
Well, I don't have the 15 mins to try and interpret what the hell you want, but I can say I read enough to know you are doing it wrong

Put it into a google sheet and share the sheet, copy link here, will make a lot more sense

 
did you try putting in Today() in place of 6/22/15 in that formula? I would assume that would work.

If not, you should be able to have a cell with =Today() in it and use that as the reference in the formula.

 
I'm sure that I'm missing something obvious here, but I can't make this work.

Say on Sheet1 I have downloaded all of my open orders so each row represents an open order line. On Sheet2 I want to display this by item. So I have my part numbers listed in a column and I use a SUMIFS to total up the orders by item. Now I want to show how many are past due. So I add 'Sheet1'!$F:$F,"<6/22/2015" to the SUMIFS so that it only pulls orders due prior to today. This works fine, but is there a way to automate it using TODAY() or something else so that I don't have to go in every day and change the date in the formula?

TIA
Using your example, =sumif('Sheet1'!$F:$F,"<" & TODAY(), [sum range])

 
I'm sure that I'm missing something obvious here, but I can't make this work.

Say on Sheet1 I have downloaded all of my open orders so each row represents an open order line. On Sheet2 I want to display this by item. So I have my part numbers listed in a column and I use a SUMIFS to total up the orders by item. Now I want to show how many are past due. So I add 'Sheet1'!$F:$F,"<6/22/2015" to the SUMIFS so that it only pulls orders due prior to today. This works fine, but is there a way to automate it using TODAY() or something else so that I don't have to go in every day and change the date in the formula?

TIA
Using your example, =sumif('Sheet1'!$F:$F,"<" & TODAY(), [sum range])
That was it. Basically I was forgetting the ampersand :bag:

I won't be having any more children, but I will name my next dog after you.

Muchas gracias

 

Users who are viewing this thread

Back
Top