Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 178
Default Formula HELP !!

Hi Need Help with a complicated formula, dont knoe if its possible or not,
here it goes, I have the following cells laid out.

NAME A B C D E
F G
Above are all dates of beginning of weeks
Bill X x x
Ady x
Tom x

I need a formula that will return data of arrears paymeny e.g in weeks
(1week) (2weeks) and so on, so Ady and Tom would return data 2 weeks, is this
possible taking the current date for a reference?

Any Help???

Thanks a lot
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 44
Default Formula HELP !!

Hello,

Dates (by themselves) are just numbers (to Excel). In their naked form
without formatting, you see the date 'number'. When you want to display them,
use something like Format(someValue, "dd-mm-yyyy"). (You can look up
specifically desired formats on the FormatCells menu option).

Think what you might want below (just guessing), have something like the
following

Public startDate as Date ' make this a global variable

in the Workbook_Open event code, say something like startDate = "1 Jan 2006"
(or whatever starting date you like)

then write your function to do :

Public Function myOffset(InputCell as Range)
Dim difference as Integer
difference = startDate - InputCell
myOffset = difference / 7

End Function

Then have your cell = myOffset(B2) & " weeks"

Hope this helps,
Chad


"santaviga" wrote:

Hi Need Help with a complicated formula, dont knoe if its possible or not,
here it goes, I have the following cells laid out.

NAME A B C D E
F G
Above are all dates of beginning of weeks
Bill X x x
Ady x
Tom x

I need a formula that will return data of arrears paymeny e.g in weeks
(1week) (2weeks) and so on, so Ady and Tom would return data 2 weeks, is this
possible taking the current date for a reference?

Any Help???

Thanks a lot

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 178
Default Formula HELP !!

Hi, where do I enter this formula, can you explain, I may seem a bit dumb but
i'm a beginner at this.


Santaviga

"ChadF" wrote:

Hello,

Dates (by themselves) are just numbers (to Excel). In their naked form
without formatting, you see the date 'number'. When you want to display them,
use something like Format(someValue, "dd-mm-yyyy"). (You can look up
specifically desired formats on the FormatCells menu option).

Think what you might want below (just guessing), have something like the
following

Public startDate as Date ' make this a global variable

in the Workbook_Open event code, say something like startDate = "1 Jan 2006"
(or whatever starting date you like)

then write your function to do :

Public Function myOffset(InputCell as Range)
Dim difference as Integer
difference = startDate - InputCell
myOffset = difference / 7

End Function

Then have your cell = myOffset(B2) & " weeks"

Hope this helps,
Chad


"santaviga" wrote:

Hi Need Help with a complicated formula, dont knoe if its possible or not,
here it goes, I have the following cells laid out.

NAME A B C D E
F G
Above are all dates of beginning of weeks
Bill X x x
Ady x
Tom x

I need a formula that will return data of arrears paymeny e.g in weeks
(1week) (2weeks) and so on, so Ady and Tom would return data 2 weeks, is this
possible taking the current date for a reference?

Any Help???

Thanks a lot

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 44
Default Formula HELP !!

No Problem

1) Press Alt + F11 (to get to the VBA editor)

You'll see an outline of all the worksheets in your project.

2) Double click on ThisWorkbook ...

You'll see a code window open up, click on the pulldown for Events and
click on Workbook_Open

in the body of the sub, just put the statement
startDate = "1 Jan 2006" (or whatever start date you want)

3) then insert a module in the window. (for inserting new code)

Public startDate as Date

Public Function myOffset(InputCell as Range)
Dim difference as Integer
difference = startDate - InputCell
myOffset = difference / 7

End Function

Then. at the Cell you want to associate with the function call,
click on the cell and press =myOffset(B2) where B2 is the cell you want
to modify.

Chad


"santaviga" wrote:

Hi, where do I enter this formula, can you explain, I may seem a bit dumb but
i'm a beginner at this.


Santaviga

"ChadF" wrote:

Hello,

Dates (by themselves) are just numbers (to Excel). In their naked form
without formatting, you see the date 'number'. When you want to display them,
use something like Format(someValue, "dd-mm-yyyy"). (You can look up
specifically desired formats on the FormatCells menu option).

Think what you might want below (just guessing), have something like the
following

Public startDate as Date ' make this a global variable

in the Workbook_Open event code, say something like startDate = "1 Jan 2006"
(or whatever starting date you like)

then write your function to do :

Public Function myOffset(InputCell as Range)
Dim difference as Integer
difference = startDate - InputCell
myOffset = difference / 7

End Function

Then have your cell = myOffset(B2) & " weeks"

Hope this helps,
Chad


"santaviga" wrote:

Hi Need Help with a complicated formula, dont knoe if its possible or not,
here it goes, I have the following cells laid out.

NAME A B C D E
F G
Above are all dates of beginning of weeks
Bill X x x
Ady x
Tom x

I need a formula that will return data of arrears paymeny e.g in weeks
(1week) (2weeks) and so on, so Ady and Tom would return data 2 weeks, is this
possible taking the current date for a reference?

Any Help???

Thanks a lot

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 178
Default Formula HELP !!

What value do I input in (InputCell as Range) ???

Ta

"ChadF" wrote:

No Problem

1) Press Alt + F11 (to get to the VBA editor)

You'll see an outline of all the worksheets in your project.

2) Double click on ThisWorkbook ...

You'll see a code window open up, click on the pulldown for Events and
click on Workbook_Open

in the body of the sub, just put the statement
startDate = "1 Jan 2006" (or whatever start date you want)

3) then insert a module in the window. (for inserting new code)

Public startDate as Date

Public Function myOffset(InputCell as Range)
Dim difference as Integer
difference = startDate - InputCell
myOffset = difference / 7

End Function

Then. at the Cell you want to associate with the function call,
click on the cell and press =myOffset(B2) where B2 is the cell you want
to modify.

Chad


"santaviga" wrote:

Hi, where do I enter this formula, can you explain, I may seem a bit dumb but
i'm a beginner at this.


Santaviga

"ChadF" wrote:

Hello,

Dates (by themselves) are just numbers (to Excel). In their naked form
without formatting, you see the date 'number'. When you want to display them,
use something like Format(someValue, "dd-mm-yyyy"). (You can look up
specifically desired formats on the FormatCells menu option).

Think what you might want below (just guessing), have something like the
following

Public startDate as Date ' make this a global variable

in the Workbook_Open event code, say something like startDate = "1 Jan 2006"
(or whatever starting date you like)

then write your function to do :

Public Function myOffset(InputCell as Range)
Dim difference as Integer
difference = startDate - InputCell
myOffset = difference / 7

End Function

Then have your cell = myOffset(B2) & " weeks"

Hope this helps,
Chad


"santaviga" wrote:

Hi Need Help with a complicated formula, dont knoe if its possible or not,
here it goes, I have the following cells laid out.

NAME A B C D E
F G
Above are all dates of beginning of weeks
Bill X x x
Ady x
Tom x

I need a formula that will return data of arrears paymeny e.g in weeks
(1week) (2weeks) and so on, so Ady and Tom would return data 2 weeks, is this
possible taking the current date for a reference?

Any Help???

Thanks a lot



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 178
Default Formula HELP !!

also when inputting startDate = "1 Jan 2006" I am getting error compile error.

Mark

"ChadF" wrote:

No Problem

1) Press Alt + F11 (to get to the VBA editor)

You'll see an outline of all the worksheets in your project.

2) Double click on ThisWorkbook ...

You'll see a code window open up, click on the pulldown for Events and
click on Workbook_Open

in the body of the sub, just put the statement
startDate = "1 Jan 2006" (or whatever start date you want)

3) then insert a module in the window. (for inserting new code)

Public startDate as Date

Public Function myOffset(InputCell as Range)
Dim difference as Integer
difference = startDate - InputCell
myOffset = difference / 7

End Function

Then. at the Cell you want to associate with the function call,
click on the cell and press =myOffset(B2) where B2 is the cell you want
to modify.

Chad


"santaviga" wrote:

Hi, where do I enter this formula, can you explain, I may seem a bit dumb but
i'm a beginner at this.


Santaviga

"ChadF" wrote:

Hello,

Dates (by themselves) are just numbers (to Excel). In their naked form
without formatting, you see the date 'number'. When you want to display them,
use something like Format(someValue, "dd-mm-yyyy"). (You can look up
specifically desired formats on the FormatCells menu option).

Think what you might want below (just guessing), have something like the
following

Public startDate as Date ' make this a global variable

in the Workbook_Open event code, say something like startDate = "1 Jan 2006"
(or whatever starting date you like)

then write your function to do :

Public Function myOffset(InputCell as Range)
Dim difference as Integer
difference = startDate - InputCell
myOffset = difference / 7

End Function

Then have your cell = myOffset(B2) & " weeks"

Hope this helps,
Chad


"santaviga" wrote:

Hi Need Help with a complicated formula, dont knoe if its possible or not,
here it goes, I have the following cells laid out.

NAME A B C D E
F G
Above are all dates of beginning of weeks
Bill X x x
Ady x
Tom x

I need a formula that will return data of arrears paymeny e.g in weeks
(1week) (2weeks) and so on, so Ady and Tom would return data 2 weeks, is this
possible taking the current date for a reference?

Any Help???

Thanks a lot

  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 44
Default Formula HELP !!

It will be a compile error until you insert a module ...
Then at the top of the module, put in the statements:

Public startDate as Date ' This will make startDate a global variable
Public Function myOffset(TargetCell as Range)

myOffset = TargetCell.Value - startDate

End Function

(try cutting and pasting this code to the module...)

then, go back to the spreadsheet and click on any cell.

hit the '=' sign, and type in: myOffset(
Then left-click the cell you want to reference (it should contain a date
value)
then press ')' & " weeks"

So, the formula for the cell in question should look something
like...

= myOffset(B2) & " weeks"

hope this helps,
Chad




"santaviga" wrote:

also when inputting startDate = "1 Jan 2006" I am getting error compile error.

Mark

"ChadF" wrote:

No Problem

1) Press Alt + F11 (to get to the VBA editor)

You'll see an outline of all the worksheets in your project.

2) Double click on ThisWorkbook ...

You'll see a code window open up, click on the pulldown for Events and
click on Workbook_Open

in the body of the sub, just put the statement
startDate = "1 Jan 2006" (or whatever start date you want)

3) then insert a module in the window. (for inserting new code)

Public startDate as Date

Public Function myOffset(InputCell as Range)
Dim difference as Integer
difference = startDate - InputCell
myOffset = difference / 7

End Function

Then. at the Cell you want to associate with the function call,
click on the cell and press =myOffset(B2) where B2 is the cell you want
to modify.

Chad


"santaviga" wrote:

Hi, where do I enter this formula, can you explain, I may seem a bit dumb but
i'm a beginner at this.


Santaviga

"ChadF" wrote:

Hello,

Dates (by themselves) are just numbers (to Excel). In their naked form
without formatting, you see the date 'number'. When you want to display them,
use something like Format(someValue, "dd-mm-yyyy"). (You can look up
specifically desired formats on the FormatCells menu option).

Think what you might want below (just guessing), have something like the
following

Public startDate as Date ' make this a global variable

in the Workbook_Open event code, say something like startDate = "1 Jan 2006"
(or whatever starting date you like)

then write your function to do :

Public Function myOffset(InputCell as Range)
Dim difference as Integer
difference = startDate - InputCell
myOffset = difference / 7

End Function

Then have your cell = myOffset(B2) & " weeks"

Hope this helps,
Chad


"santaviga" wrote:

Hi Need Help with a complicated formula, dont knoe if its possible or not,
here it goes, I have the following cells laid out.

NAME A B C D E
F G
Above are all dates of beginning of weeks
Bill X x x
Ady x
Tom x

I need a formula that will return data of arrears paymeny e.g in weeks
(1week) (2weeks) and so on, so Ady and Tom would return data 2 weeks, is this
possible taking the current date for a reference?

Any Help???

Thanks a lot

  #8   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,355
Default Formula HELP !!

Hi there. I'm thinking that you want a formula for your worksheet rather
than something in VBA. Is that correct? I need to know what you have
listed above each column for column A - G.

"santaviga" wrote:

Hi Need Help with a complicated formula, dont knoe if its possible or not,
here it goes, I have the following cells laid out.

NAME A B C D E
F G
Above are all dates of beginning of weeks
Bill X x x
Ady x
Tom x

I need a formula that will return data of arrears paymeny e.g in weeks
(1week) (2weeks) and so on, so Ady and Tom would return data 2 weeks, is this
possible taking the current date for a reference?

Any Help???

Thanks a lot

  #9   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 44
Default Formula HELP !!

Sorry, meant to write myOffset = (TargetCell.Value - startDate) / 7


"ChadF" wrote:

It will be a compile error until you insert a module ...
Then at the top of the module, put in the statements:

Public startDate as Date ' This will make startDate a global variable
Public Function myOffset(TargetCell as Range)

myOffset = TargetCell.Value - startDate

End Function

(try cutting and pasting this code to the module...)

then, go back to the spreadsheet and click on any cell.

hit the '=' sign, and type in: myOffset(
Then left-click the cell you want to reference (it should contain a date
value)
then press ')' & " weeks"

So, the formula for the cell in question should look something
like...

= myOffset(B2) & " weeks"

hope this helps,
Chad




"santaviga" wrote:

also when inputting startDate = "1 Jan 2006" I am getting error compile error.

Mark

"ChadF" wrote:

No Problem

1) Press Alt + F11 (to get to the VBA editor)

You'll see an outline of all the worksheets in your project.

2) Double click on ThisWorkbook ...

You'll see a code window open up, click on the pulldown for Events and
click on Workbook_Open

in the body of the sub, just put the statement
startDate = "1 Jan 2006" (or whatever start date you want)

3) then insert a module in the window. (for inserting new code)

Public startDate as Date

Public Function myOffset(InputCell as Range)
Dim difference as Integer
difference = startDate - InputCell
myOffset = difference / 7

End Function

Then. at the Cell you want to associate with the function call,
click on the cell and press =myOffset(B2) where B2 is the cell you want
to modify.

Chad


"santaviga" wrote:

Hi, where do I enter this formula, can you explain, I may seem a bit dumb but
i'm a beginner at this.


Santaviga

"ChadF" wrote:

Hello,

Dates (by themselves) are just numbers (to Excel). In their naked form
without formatting, you see the date 'number'. When you want to display them,
use something like Format(someValue, "dd-mm-yyyy"). (You can look up
specifically desired formats on the FormatCells menu option).

Think what you might want below (just guessing), have something like the
following

Public startDate as Date ' make this a global variable

in the Workbook_Open event code, say something like startDate = "1 Jan 2006"
(or whatever starting date you like)

then write your function to do :

Public Function myOffset(InputCell as Range)
Dim difference as Integer
difference = startDate - InputCell
myOffset = difference / 7

End Function

Then have your cell = myOffset(B2) & " weeks"

Hope this helps,
Chad


"santaviga" wrote:

Hi Need Help with a complicated formula, dont knoe if its possible or not,
here it goes, I have the following cells laid out.

NAME A B C D E
F G
Above are all dates of beginning of weeks
Bill X x x
Ady x
Tom x

I need a formula that will return data of arrears paymeny e.g in weeks
(1week) (2weeks) and so on, so Ady and Tom would return data 2 weeks, is this
possible taking the current date for a reference?

Any Help???

Thanks a lot

  #10   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 178
Default Formula HELP !!

I have dates e.g 1/1/06 8/1/6 15/1/6 and so on to the end of the worksheet
and need a formula to report arrears in weeks to a cell next to a name in
relation to a X being put in a cell relating to the week saying that that
week has been paid..

Thanks

"Barb Reinhardt" wrote:

Hi there. I'm thinking that you want a formula for your worksheet rather
than something in VBA. Is that correct? I need to know what you have
listed above each column for column A - G.

"santaviga" wrote:

Hi Need Help with a complicated formula, dont knoe if its possible or not,
here it goes, I have the following cells laid out.

NAME A B C D E
F G
Above are all dates of beginning of weeks
Bill X x x
Ady x
Tom x

I need a formula that will return data of arrears paymeny e.g in weeks
(1week) (2weeks) and so on, so Ady and Tom would return data 2 weeks, is this
possible taking the current date for a reference?

Any Help???

Thanks a lot



  #11   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,355
Default Formula HELP !!

Let's say that your dates are in column 1.

Let's also say that Bill's information is in column 3 (specifically cells
B3:H3)

Try this formula:

=INT(TODAY()-INDEX($1:$1,1,MATCH("x",A3:H3)))/7

"santaviga" wrote:

Hi Need Help with a complicated formula, dont knoe if its possible or not,
here it goes, I have the following cells laid out.

NAME A B C D E
F G
Above are all dates of beginning of weeks
Bill X x x
Ady x
Tom x

I need a formula that will return data of arrears paymeny e.g in weeks
(1week) (2weeks) and so on, so Ady and Tom would return data 2 weeks, is this
possible taking the current date for a reference?

Any Help???

Thanks a lot

  #12   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 178
Default Formula HELP !!

Hi, Sorry this is returning a date and time in 1900 I need it to return data
1 WEEK or 2 WEEK or 3 WEEK depening on the x's in the information according
to week commencing dates.

Mark

"Barb Reinhardt" wrote:

Let's say that your dates are in column 1.

Let's also say that Bill's information is in column 3 (specifically cells
B3:H3)

Try this formula:

=INT(TODAY()-INDEX($1:$1,1,MATCH("x",A3:H3)))/7

"santaviga" wrote:

Hi Need Help with a complicated formula, dont knoe if its possible or not,
here it goes, I have the following cells laid out.

NAME A B C D E
F G
Above are all dates of beginning of weeks
Bill X x x
Ady x
Tom x

I need a formula that will return data of arrears paymeny e.g in weeks
(1week) (2weeks) and so on, so Ady and Tom would return data 2 weeks, is this
possible taking the current date for a reference?

Any Help???

Thanks a lot

  #13   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,355
Default Formula HELP !!

To the end of the WORKSHEET? That's like 256 columns. Do you really have
that much data?

"santaviga" wrote:

I have dates e.g 1/1/06 8/1/6 15/1/6 and so on to the end of the worksheet
and need a formula to report arrears in weeks to a cell next to a name in
relation to a X being put in a cell relating to the week saying that that
week has been paid..

Thanks

"Barb Reinhardt" wrote:

Hi there. I'm thinking that you want a formula for your worksheet rather
than something in VBA. Is that correct? I need to know what you have
listed above each column for column A - G.

"santaviga" wrote:

Hi Need Help with a complicated formula, dont knoe if its possible or not,
here it goes, I have the following cells laid out.

NAME A B C D E
F G
Above are all dates of beginning of weeks
Bill X x x
Ady x
Tom x

I need a formula that will return data of arrears paymeny e.g in weeks
(1week) (2weeks) and so on, so Ady and Tom would return data 2 weeks, is this
possible taking the current date for a reference?

Any Help???

Thanks a lot

  #14   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,355
Default Formula HELP !!

Format it as NUMBER.

"santaviga" wrote:

Hi, Sorry this is returning a date and time in 1900 I need it to return data
1 WEEK or 2 WEEK or 3 WEEK depening on the x's in the information according
to week commencing dates.

Mark

"Barb Reinhardt" wrote:

Let's say that your dates are in column 1.

Let's also say that Bill's information is in column 3 (specifically cells
B3:H3)

Try this formula:

=INT(TODAY()-INDEX($1:$1,1,MATCH("x",A3:H3)))/7

"santaviga" wrote:

Hi Need Help with a complicated formula, dont knoe if its possible or not,
here it goes, I have the following cells laid out.

NAME A B C D E
F G
Above are all dates of beginning of weeks
Bill X x x
Ady x
Tom x

I need a formula that will return data of arrears paymeny e.g in weeks
(1week) (2weeks) and so on, so Ady and Tom would return data 2 weeks, is this
possible taking the current date for a reference?

Any Help???

Thanks a lot

  #15   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 178
Default Formula HELP !!

Hi tried all the info you sent but the cell returns a value error any ideas??

Mark

"ChadF" wrote:

Sorry, meant to write myOffset = (TargetCell.Value - startDate) / 7


"ChadF" wrote:

It will be a compile error until you insert a module ...
Then at the top of the module, put in the statements:

Public startDate as Date ' This will make startDate a global variable
Public Function myOffset(TargetCell as Range)

myOffset = TargetCell.Value - startDate

End Function

(try cutting and pasting this code to the module...)

then, go back to the spreadsheet and click on any cell.

hit the '=' sign, and type in: myOffset(
Then left-click the cell you want to reference (it should contain a date
value)
then press ')' & " weeks"

So, the formula for the cell in question should look something
like...

= myOffset(B2) & " weeks"

hope this helps,
Chad




"santaviga" wrote:

also when inputting startDate = "1 Jan 2006" I am getting error compile error.

Mark

"ChadF" wrote:

No Problem

1) Press Alt + F11 (to get to the VBA editor)

You'll see an outline of all the worksheets in your project.

2) Double click on ThisWorkbook ...

You'll see a code window open up, click on the pulldown for Events and
click on Workbook_Open

in the body of the sub, just put the statement
startDate = "1 Jan 2006" (or whatever start date you want)

3) then insert a module in the window. (for inserting new code)

Public startDate as Date

Public Function myOffset(InputCell as Range)
Dim difference as Integer
difference = startDate - InputCell
myOffset = difference / 7

End Function

Then. at the Cell you want to associate with the function call,
click on the cell and press =myOffset(B2) where B2 is the cell you want
to modify.

Chad


"santaviga" wrote:

Hi, where do I enter this formula, can you explain, I may seem a bit dumb but
i'm a beginner at this.


Santaviga

"ChadF" wrote:

Hello,

Dates (by themselves) are just numbers (to Excel). In their naked form
without formatting, you see the date 'number'. When you want to display them,
use something like Format(someValue, "dd-mm-yyyy"). (You can look up
specifically desired formats on the FormatCells menu option).

Think what you might want below (just guessing), have something like the
following

Public startDate as Date ' make this a global variable

in the Workbook_Open event code, say something like startDate = "1 Jan 2006"
(or whatever starting date you like)

then write your function to do :

Public Function myOffset(InputCell as Range)
Dim difference as Integer
difference = startDate - InputCell
myOffset = difference / 7

End Function

Then have your cell = myOffset(B2) & " weeks"

Hope this helps,
Chad


"santaviga" wrote:

Hi Need Help with a complicated formula, dont knoe if its possible or not,
here it goes, I have the following cells laid out.

NAME A B C D E
F G
Above are all dates of beginning of weeks
Bill X x x
Ady x
Tom x

I need a formula that will return data of arrears paymeny e.g in weeks
(1week) (2weeks) and so on, so Ady and Tom would return data 2 weeks, is this
possible taking the current date for a reference?

Any Help???

Thanks a lot



  #16   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 178
Default Formula HELP !!

Thanks a lot Barb, Great stuff.


Regards,

Mark

"Barb Reinhardt" wrote:

Format it as NUMBER.

"santaviga" wrote:

Hi, Sorry this is returning a date and time in 1900 I need it to return data
1 WEEK or 2 WEEK or 3 WEEK depening on the x's in the information according
to week commencing dates.

Mark

"Barb Reinhardt" wrote:

Let's say that your dates are in column 1.

Let's also say that Bill's information is in column 3 (specifically cells
B3:H3)

Try this formula:

=INT(TODAY()-INDEX($1:$1,1,MATCH("x",A3:H3)))/7

"santaviga" wrote:

Hi Need Help with a complicated formula, dont knoe if its possible or not,
here it goes, I have the following cells laid out.

NAME A B C D E
F G
Above are all dates of beginning of weeks
Bill X x x
Ady x
Tom x

I need a formula that will return data of arrears paymeny e.g in weeks
(1week) (2weeks) and so on, so Ady and Tom would return data 2 weeks, is this
possible taking the current date for a reference?

Any Help???

Thanks a lot

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Regression Leverage Formula (Jerry W. Lewis or Mike Middleton)already have DFITS formula PJ[_3_] Excel Worksheet Functions 2 June 2nd 10 03:45 PM
copy formula down a column and have cell references change within formula brad New Users to Excel 5 May 13th 07 04:38 PM
Build excel formula using field values as text in the formula val kilbane Excel Worksheet Functions 2 April 18th 07 01:52 PM
Formula expected end of statement error, typing formula into cell as part of VBA macro [email protected] Excel Programming 1 July 20th 06 07:58 PM
Commenting custom formula fields/formula on formula editor Muxer Excel Programming 2 July 24th 03 01:02 AM


All times are GMT +1. The time now is 03:27 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"