Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
 
Posts: n/a
Default Any notification through Excel Spreadsheet

Hi all,

How are you ?

Need your advise on Excel spreadsheet again.

I have an ammout, let said 12000 (USD) and would like to
divide into 20 months as follows. Before I divided in 20
months, I Have to convert the accounting rate from USD to
Singapore dollars. Meaning is every I hv to do a
calculation and update in followng excel format. As the
accounting rate will different every month.

May I know is there a notification function in Excel
spreadsheet where the user will be able to set for
triggerring user to update the speadsheet by monthly or
weekly as we like.

Really appeciate you help on this.


Month currency rate actual ammunt in SGP Dollars
Sep-04 2.5
Oct-04
Nov-04
Dec-04
Jan-05
Feb-05
Mar-05
Apr-05
May-05
Jun-05
Jul-05
Aug-05
Sep-05
Oct-05
Nov-05
Dec-05
Jan-06
Feb-06
Mar-06
Apr-06

  #2   Report Post  
Dave R.
 
Posts: n/a
Default

Hello.

If you are talking about notification, you can use a formula with
conditional formatting to "show" when something may be out of date. Is that
what you are looking for?



wrote in message
...
Hi all,

How are you ?

Need your advise on Excel spreadsheet again.

I have an ammout, let said 12000 (USD) and would like to
divide into 20 months as follows. Before I divided in 20
months, I Have to convert the accounting rate from USD to
Singapore dollars. Meaning is every I hv to do a
calculation and update in followng excel format. As the
accounting rate will different every month.

May I know is there a notification function in Excel
spreadsheet where the user will be able to set for
triggerring user to update the speadsheet by monthly or
weekly as we like.

Really appeciate you help on this.


Month currency rate actual ammunt in SGP Dollars
Sep-04 2.5
Oct-04
Nov-04
Dec-04
Jan-05
Feb-05
Mar-05
Apr-05
May-05
Jun-05
Jul-05
Aug-05
Sep-05
Oct-05
Nov-05
Dec-05
Jan-06
Feb-06
Mar-06
Apr-06



  #3   Report Post  
amy
 
Posts: n/a
Default

Thank s Dave.

Just need a function or formula to trigger user by monthly
basic to update the excel spreadsheet.

Your advice is deply appreciated.

-----Original Message-----
Hello.

If you are talking about notification, you can use a

formula with
conditional formatting to "show" when something may be

out of date. Is that
what you are looking for?



wrote in message
...
Hi all,

How are you ?

Need your advise on Excel spreadsheet again.

I have an ammout, let said 12000 (USD) and would like to
divide into 20 months as follows. Before I divided in 20
months, I Have to convert the accounting rate from USD

to
Singapore dollars. Meaning is every I hv to do a
calculation and update in followng excel format. As the
accounting rate will different every month.

May I know is there a notification function in Excel
spreadsheet where the user will be able to set for
triggerring user to update the speadsheet by monthly or
weekly as we like.

Really appeciate you help on this.


Month currency rate actual ammunt in SGP

Dollars
Sep-04 2.5
Oct-04
Nov-04
Dec-04
Jan-05
Feb-05
Mar-05
Apr-05
May-05
Jun-05
Jul-05
Aug-05
Sep-05
Oct-05
Nov-05
Dec-05
Jan-06
Feb-06
Mar-06
Apr-06



.

  #4   Report Post  
Dave R.
 
Posts: n/a
Default

Still not 100% sure what you want but it's getting late.

Ok - if your data (month & rate) is in A1:B20..

You can try this array formula

=IF(TEXT(INDEX(A1:A20,MAX(IF(B1:B20<"",ROW(B1:B20 )))),"mmyy")<TEXT(TODAY()
,"mmyy"),"Update Exchange Rate","")

entered with CTRL-SHIFT-ENTER.

If the exchange rate for the current month/year is not filled in, this will
remind a person to fill in the exchange rate. Exchange rates beyond the
current month/year will show the same message.




"amy" wrote in message
...
Thank s Dave.

Just need a function or formula to trigger user by monthly
basic to update the excel spreadsheet.

Your advice is deply appreciated.

-----Original Message-----
Hello.

If you are talking about notification, you can use a

formula with
conditional formatting to "show" when something may be

out of date. Is that
what you are looking for?



wrote in message
...
Hi all,

How are you ?

Need your advise on Excel spreadsheet again.

I have an ammout, let said 12000 (USD) and would like to
divide into 20 months as follows. Before I divided in 20
months, I Have to convert the accounting rate from USD

to
Singapore dollars. Meaning is every I hv to do a
calculation and update in followng excel format. As the
accounting rate will different every month.

May I know is there a notification function in Excel
spreadsheet where the user will be able to set for
triggerring user to update the speadsheet by monthly or
weekly as we like.

Really appeciate you help on this.


Month currency rate actual ammunt in SGP

Dollars
Sep-04 2.5
Oct-04
Nov-04
Dec-04
Jan-05
Feb-05
Mar-05
Apr-05
May-05
Jun-05
Jul-05
Aug-05
Sep-05
Oct-05
Nov-05
Dec-05
Jan-06
Feb-06
Mar-06
Apr-06



.



  #5   Report Post  
Harlan Grove
 
Posts: n/a
Default

"Dave R." wrote...
Still not 100% sure what you want but it's getting late.

Ok - if your data (month & rate) is in A1:B20..

You can try this array formula

=IF(TEXT(INDEX(A1:A20,MAX(IF(B1:B20<"",ROW(B1:B2 0)))),"mmyy")
<TEXT(TODAY(),"mmyy"),"Update Exchange Rate","")

entered with CTRL-SHIFT-ENTER.

....

A bit long. The INDEX expression could be shortened to

LOOKUP(2,1/(B1:B20<""),A1:A20)

and not require array entry. However, if the OP just needs an indicator
whether there were an exchange rate in B1:B20 for every date in A1:A20, and
the dates in A1:A20 were date serial numbers, then the following array
formula would suffice.

=IF(OR(ISNUMBER(A1:A20)<ISNUMBER(B1:B20)),"Update Exchange Rates","")




  #6   Report Post  
Alok Joshi
 
Posts: n/a
Default

You can try the following
Highlight the range B1 to B20.
Select Menu option Format/Conditional Formatting
Enter the following in the Formula (Select Formula Is option)
=(INDEX($B$1:$B$20,MATCH(TODAY(),$A$1:$A$20))="")
Select an appropriate (warning) format.
What this will do is format the range B1:B20 with the specified format in
case the
exchange rate entry for the current month is missing.

Alok


"amy" wrote in message
...
Thank s Dave.

Just need a function or formula to trigger user by monthly
basic to update the excel spreadsheet.

Your advice is deply appreciated.

-----Original Message-----
Hello.

If you are talking about notification, you can use a

formula with
conditional formatting to "show" when something may be

out of date. Is that
what you are looking for?



wrote in message
...
Hi all,

How are you ?

Need your advise on Excel spreadsheet again.

I have an ammout, let said 12000 (USD) and would like to
divide into 20 months as follows. Before I divided in 20
months, I Have to convert the accounting rate from USD

to
Singapore dollars. Meaning is every I hv to do a
calculation and update in followng excel format. As the
accounting rate will different every month.

May I know is there a notification function in Excel
spreadsheet where the user will be able to set for
triggerring user to update the speadsheet by monthly or
weekly as we like.

Really appeciate you help on this.


Month currency rate actual ammunt in SGP

Dollars
Sep-04 2.5
Oct-04
Nov-04
Dec-04
Jan-05
Feb-05
Mar-05
Apr-05
May-05
Jun-05
Jul-05
Aug-05
Sep-05
Oct-05
Nov-05
Dec-05
Jan-06
Feb-06
Mar-06
Apr-06



.



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
Excel 2003 FAILS, but Excel 2000 SUCCEEDS ??? Richard Excel Discussion (Misc queries) 2 May 13th 23 11:46 AM
How do I export an Excel spreadsheet to Pocket PC (Pocket Excel)?. Selena Excel Discussion (Misc queries) 1 December 7th 04 03:01 AM
Copying an Excel spreadsheet to a Word document KG Excel Discussion (Misc queries) 1 November 28th 04 07:38 PM
How do I password protect cells in a spreadsheet created in Excel Tbenson37303 Excel Worksheet Functions 0 November 22nd 04 09:21 PM
How do I password protect cells in a spreadsheet created in Excel [email protected] Excel Worksheet Functions 0 November 22nd 04 09:21 PM


All times are GMT +1. The time now is 01:09 PM.

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

About Us

"It's about Microsoft Excel"