ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   What type formula to use? (https://www.excelbanter.com/excel-worksheet-functions/233381-what-type-formula-use.html)

CE

What type formula to use?
 
Hi,

I need a formula that takes into account todays date before it adds the row
range.

The spreadsheet I'm working with has 2 tabs. On the second tab are the rows
I need added: B2:AL2
For this to show what is needed I need it to only display a number through
the current date. So using the current date the 9th - I won't want to add the
rest of the month. Is this possible?

If not what formula can I use that only adds within the row and displays the
amount added once something is inputted into the row?

Sorry if this is a little strange. Thank you for your help :)

Shane Devenshire[_2_]

What type formula to use?
 
Hi,

Why don't you show us a sample of your data layout and what you want.

--
If this helps, please click the Yes button.

Cheers,
Shane Devenshire


"CE" wrote:

Hi,

I need a formula that takes into account todays date before it adds the row
range.

The spreadsheet I'm working with has 2 tabs. On the second tab are the rows
I need added: B2:AL2
For this to show what is needed I need it to only display a number through
the current date. So using the current date the 9th - I won't want to add the
rest of the month. Is this possible?

If not what formula can I use that only adds within the row and displays the
amount added once something is inputted into the row?

Sorry if this is a little strange. Thank you for your help :)


CE

What type formula to use?
 
Sorry.

On sheet 2 I have column a set up with names. B through AL have dates.

1 2 3 4 5 6 7 8 9 10 etc.
John Smith 8 8 8 8

The 8's represent the amount of time off taken.

On sheet 1 I have it set up similar.

June
Taken Total
John Smith 40

Under the Taken column is where I need the formula that adds the amount of
time off taken from the first of the month through the current date.

Sorry if my first post was a little too vague. Please let me know if you
need more info. to help me.

Thank you,
CE

"Shane Devenshire" wrote:

Hi,

Why don't you show us a sample of your data layout and what you want.

--
If this helps, please click the Yes button.

Cheers,
Shane Devenshire


"CE" wrote:

Hi,

I need a formula that takes into account todays date before it adds the row
range.

The spreadsheet I'm working with has 2 tabs. On the second tab are the rows
I need added: B2:AL2
For this to show what is needed I need it to only display a number through
the current date. So using the current date the 9th - I won't want to add the
rest of the month. Is this possible?

If not what formula can I use that only adds within the row and displays the
amount added once something is inputted into the row?

Sorry if this is a little strange. Thank you for your help :)


Jacob Skaria

What type formula to use?
 
This should be COL B to AF ; right
Try the below formula in AG

=SUM(INDIRECT("B" & ROW() & ":" & ADDRESS(ROW(),DAY(TODAY())+1)))

If this post helps click Yes
---------------
Jacob Skaria


"CE" wrote:

Hi,

I need a formula that takes into account todays date before it adds the row
range.

The spreadsheet I'm working with has 2 tabs. On the second tab are the rows
I need added: B2:AL2
For this to show what is needed I need it to only display a number through
the current date. So using the current date the 9th - I won't want to add the
rest of the month. Is this possible?

If not what formula can I use that only adds within the row and displays the
amount added once something is inputted into the row?

Sorry if this is a little strange. Thank you for your help :)


T. Valko

What type formula to use?
 
Try this:

=SUM(Sheet2!B2:INDEX(Sheet2!B2:AF2,DAY(NOW())))

--
Biff
Microsoft Excel MVP


"CE" wrote in message
...
Sorry.

On sheet 2 I have column a set up with names. B through AL have dates.

1 2 3 4 5 6 7 8 9 10 etc.
John Smith 8 8 8 8

The 8's represent the amount of time off taken.

On sheet 1 I have it set up similar.

June
Taken Total
John Smith 40

Under the Taken column is where I need the formula that adds the amount of
time off taken from the first of the month through the current date.

Sorry if my first post was a little too vague. Please let me know if you
need more info. to help me.

Thank you,
CE

"Shane Devenshire" wrote:

Hi,

Why don't you show us a sample of your data layout and what you want.

--
If this helps, please click the Yes button.

Cheers,
Shane Devenshire


"CE" wrote:

Hi,

I need a formula that takes into account todays date before it adds the
row
range.

The spreadsheet I'm working with has 2 tabs. On the second tab are the
rows
I need added: B2:AL2
For this to show what is needed I need it to only display a number
through
the current date. So using the current date the 9th - I won't want to
add the
rest of the month. Is this possible?

If not what formula can I use that only adds within the row and
displays the
amount added once something is inputted into the row?

Sorry if this is a little strange. Thank you for your help :)




CE

What type formula to use?
 
THANK YOU!!!

"T. Valko" wrote:

Try this:

=SUM(Sheet2!B2:INDEX(Sheet2!B2:AF2,DAY(NOW())))

--
Biff
Microsoft Excel MVP


"CE" wrote in message
...
Sorry.

On sheet 2 I have column a set up with names. B through AL have dates.

1 2 3 4 5 6 7 8 9 10 etc.
John Smith 8 8 8 8

The 8's represent the amount of time off taken.

On sheet 1 I have it set up similar.

June
Taken Total
John Smith 40

Under the Taken column is where I need the formula that adds the amount of
time off taken from the first of the month through the current date.

Sorry if my first post was a little too vague. Please let me know if you
need more info. to help me.

Thank you,
CE

"Shane Devenshire" wrote:

Hi,

Why don't you show us a sample of your data layout and what you want.

--
If this helps, please click the Yes button.

Cheers,
Shane Devenshire


"CE" wrote:

Hi,

I need a formula that takes into account todays date before it adds the
row
range.

The spreadsheet I'm working with has 2 tabs. On the second tab are the
rows
I need added: B2:AL2
For this to show what is needed I need it to only display a number
through
the current date. So using the current date the 9th - I won't want to
add the
rest of the month. Is this possible?

If not what formula can I use that only adds within the row and
displays the
amount added once something is inputted into the row?

Sorry if this is a little strange. Thank you for your help :)





T. Valko

What type formula to use?
 
You're welcome!

--
Biff
Microsoft Excel MVP


"CE" wrote in message
...
THANK YOU!!!

"T. Valko" wrote:

Try this:

=SUM(Sheet2!B2:INDEX(Sheet2!B2:AF2,DAY(NOW())))

--
Biff
Microsoft Excel MVP


"CE" wrote in message
...
Sorry.

On sheet 2 I have column a set up with names. B through AL have dates.

1 2 3 4 5 6 7 8 9 10 etc.
John Smith 8 8 8 8

The 8's represent the amount of time off taken.

On sheet 1 I have it set up similar.

June
Taken Total
John Smith 40

Under the Taken column is where I need the formula that adds the amount
of
time off taken from the first of the month through the current date.

Sorry if my first post was a little too vague. Please let me know if
you
need more info. to help me.

Thank you,
CE

"Shane Devenshire" wrote:

Hi,

Why don't you show us a sample of your data layout and what you want.

--
If this helps, please click the Yes button.

Cheers,
Shane Devenshire


"CE" wrote:

Hi,

I need a formula that takes into account todays date before it adds
the
row
range.

The spreadsheet I'm working with has 2 tabs. On the second tab are
the
rows
I need added: B2:AL2
For this to show what is needed I need it to only display a number
through
the current date. So using the current date the 9th - I won't want
to
add the
rest of the month. Is this possible?

If not what formula can I use that only adds within the row and
displays the
amount added once something is inputted into the row?

Sorry if this is a little strange. Thank you for your help :)








All times are GMT +1. The time now is 08:44 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com