$$Excel-Macros$$ VALUE ERROR PROBLEM

2012-03-19 Thread hilary lomotey
Hello Expert

in the attached file, when i select from the drop down list in cell B8, i
get a value error in column F (colored yellow). i want a formula that will
give me the correct value in column F when the value in column D under
periodic withdrawals is blank.

kindly note however that if i select annual from the drop down in cell
B8, the seems to be no problem, it only happens when the column D (cell d12
downwards) is blank.

-- 
FORUM RULES (986+ members already BANNED for violation)

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.

2) Don't post a question in the thread of another member.

3) Don't post questions regarding breaking or bypassing any security measure.

4) Acknowledge the responses you receive, good or bad.

5)  Cross-promotion of, or links to, forums competitive to this forum in 
signatures are prohibited. 

NOTE  : Don't ever post personal or confidential data in a workbook. Forum 
owners and members are not responsible for any loss.

--
To post to this group, send email to excel-macros@googlegroups.com


FVOA.xlsx
Description: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet


Re: $$Excel-Macros$$ VALUE ERROR PROBLEM

2012-03-19 Thread Shaik Waheed
Hi Hilary,

Enter the below formula in F13 and drag it down

=IF(OR(A13=,D13=),,E13-D13))

HTH,
Waheed
On Mon, Mar 19, 2012 at 3:24 PM, hilary lomotey resp...@gmail.com wrote:

 Hello Expert

 in the attached file, when i select from the drop down list in cell B8, i
 get a value error in column F (colored yellow). i want a formula that will
 give me the correct value in column F when the value in column D under
 periodic withdrawals is blank.

 kindly note however that if i select annual from the drop down in cell
 B8, the seems to be no problem, it only happens when the column D (cell d12
 downwards) is blank.



 --
 FORUM RULES (986+ members already BANNED for violation)

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.

 2) Don't post a question in the thread of another member.

 3) Don't post questions regarding breaking or bypassing any security
 measure.

 4) Acknowledge the responses you receive, good or bad.

 5) Cross-promotion of, or links to, forums competitive to this forum in
 signatures are prohibited.

 NOTE : Don't ever post personal or confidential data in a workbook. Forum
 owners and members are not responsible for any loss.


 --
 To post to this group, send email to excel-macros@googlegroups.com


-- 
FORUM RULES (986+ members already BANNED for violation)

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.

2) Don't post a question in the thread of another member.

3) Don't post questions regarding breaking or bypassing any security measure.

4) Acknowledge the responses you receive, good or bad.

5)  Cross-promotion of, or links to, forums competitive to this forum in 
signatures are prohibited. 

NOTE  : Don't ever post personal or confidential data in a workbook. Forum 
owners and members are not responsible for any loss.

--
To post to this group, send email to excel-macros@googlegroups.com


Re: $$Excel-Macros$$ VALUE ERROR PROBLEM

2012-03-19 Thread hilary lomotey
Thanks both for your help,

On Mon, Mar 19, 2012 at 10:24 AM, Shaik Waheed waheedb...@gmail.com wrote:

 Hi Hilary,

 Enter the below formula in F13 and drag it down

 =IF(OR(A13=,D13=),,E13-D13))

 HTH,
 Waheed
 On Mon, Mar 19, 2012 at 3:24 PM, hilary lomotey resp...@gmail.com wrote:

 Hello Expert

 in the attached file, when i select from the drop down list in cell B8, i
 get a value error in column F (colored yellow). i want a formula that will
 give me the correct value in column F when the value in column D under
 periodic withdrawals is blank.

 kindly note however that if i select annual from the drop down in cell
 B8, the seems to be no problem, it only happens when the column D (cell d12
 downwards) is blank.



 --
 FORUM RULES (986+ members already BANNED for violation)

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.

 2) Don't post a question in the thread of another member.

 3) Don't post questions regarding breaking or bypassing any security
 measure.

 4) Acknowledge the responses you receive, good or bad.

 5) Cross-promotion of, or links to, forums competitive to this forum in
 signatures are prohibited.

 NOTE : Don't ever post personal or confidential data in a workbook. Forum
 owners and members are not responsible for any loss.


 --
 To post to this group, send email to excel-macros@googlegroups.com


  --
 FORUM RULES (986+ members already BANNED for violation)

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.

 2) Don't post a question in the thread of another member.

 3) Don't post questions regarding breaking or bypassing any security
 measure.

 4) Acknowledge the responses you receive, good or bad.

 5) Cross-promotion of, or links to, forums competitive to this forum in
 signatures are prohibited.

 NOTE : Don't ever post personal or confidential data in a workbook. Forum
 owners and members are not responsible for any loss.


 --
 To post to this group, send email to excel-macros@googlegroups.com


-- 
FORUM RULES (986+ members already BANNED for violation)

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.

2) Don't post a question in the thread of another member.

3) Don't post questions regarding breaking or bypassing any security measure.

4) Acknowledge the responses you receive, good or bad.

5)  Cross-promotion of, or links to, forums competitive to this forum in 
signatures are prohibited. 

NOTE  : Don't ever post personal or confidential data in a workbook. Forum 
owners and members are not responsible for any loss.

--
To post to this group, send email to excel-macros@googlegroups.com


Re: $$Excel-Macros$$ VALUE ERROR PROBLEM

2012-03-19 Thread hilary lomotey
THANKS CHIEF

On Mon, Mar 19, 2012 at 12:03 PM, NOORAIN ANSARI
noorain.ans...@gmail.comwrote:

 Hi Hilary,
 You can also use
 =IFERROR(IF(A13=,,E13-D13),)
 or
 =IF(ISERROR(IF($A14=,,$E14-$D14)), ,IF($A14=,,$E14-$D14))

 See attached sheet.
 On Mon, Mar 19, 2012 at 3:24 PM, hilary lomotey resp...@gmail.com wrote:

 Hello Expert

 in the attached file, when i select from the drop down list in cell B8, i
 get a value error in column F (colored yellow). i want a formula that will
 give me the correct value in column F when the value in column D under
 periodic withdrawals is blank.

 kindly note however that if i select annual from the drop down in cell
 B8, the seems to be no problem, it only happens when the column D (cell d12
 downwards) is blank.



 --
 FORUM RULES (986+ members already BANNED for violation)

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.

 2) Don't post a question in the thread of another member.

 3) Don't post questions regarding breaking or bypassing any security
 measure.

 4) Acknowledge the responses you receive, good or bad.

 5) Cross-promotion of, or links to, forums competitive to this forum in
 signatures are prohibited.

 NOTE : Don't ever post personal or confidential data in a workbook. Forum
 owners and members are not responsible for any loss.


 --
 To post to this group, send email to excel-macros@googlegroups.com




 --
 Thanks  regards,
 Noorain Ansari
  ** http://excelmacroworld.blogspot.com/*http://noorainansari.com/*
 *http://excelmacroworld.blogspot.com/*http://excelmacroworld.blogspot.com/


  --
 FORUM RULES (986+ members already BANNED for violation)

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.

 2) Don't post a question in the thread of another member.

 3) Don't post questions regarding breaking or bypassing any security
 measure.

 4) Acknowledge the responses you receive, good or bad.

 5) Cross-promotion of, or links to, forums competitive to this forum in
 signatures are prohibited.

 NOTE : Don't ever post personal or confidential data in a workbook. Forum
 owners and members are not responsible for any loss.


 --
 To post to this group, send email to excel-macros@googlegroups.com


-- 
FORUM RULES (986+ members already BANNED for violation)

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.

2) Don't post a question in the thread of another member.

3) Don't post questions regarding breaking or bypassing any security measure.

4) Acknowledge the responses you receive, good or bad.

5)  Cross-promotion of, or links to, forums competitive to this forum in 
signatures are prohibited. 

NOTE  : Don't ever post personal or confidential data in a workbook. Forum 
owners and members are not responsible for any loss.

--
To post to this group, send email to excel-macros@googlegroups.com