Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 367
Default Function help excel 2003

I am trying make an auto popluate function from a drop down menu. Such as: if
(drop down) I3 equals "x" then pupulate c2:c42:c74 etc. with g3.

I am trying to auto populate cells in a budget. So the question for g3 is
how much are your paychecks. The drop down menu is frequency of pay such as
1st friday 2nd friday 3rd friday etc. c2:c42:c74 are 1st friday 2nd friday
3rd friday from a calender.

Thanks for any help, Jason
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Max Max is offline
external usenet poster
 
Posts: 9,221
Default Function help excel 2003

.. if (drop down) I3 equals "x" then populate c2:c42:c74 etc. with g3.

Easiest way is to place this simple formula
in each of the cells: c2, c42, c74 etc:
=IF(I3="x",G3,"")
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:22,500 Files:370 Subscribers:66
xdemechanik
---
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 367
Default Function help excel 2003

Max, Thanks for the fast response. Is there a way to keep my "x" labeled as
1st sunday etc. or do I have to change it to a number?

Jason

"Max" wrote:

.. if (drop down) I3 equals "x" then populate c2:c42:c74 etc. with g3.


Easiest way is to place this simple formula
in each of the cells: c2, c42, c74 etc:
=IF(I3="x",G3,"")
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:22,500 Files:370 Subscribers:66
xdemechanik
---

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Max Max is offline
external usenet poster
 
Posts: 9,221
Default Function help excel 2003

Is there a way to keep my "x" labeled as 1st sunday etc.
or do I have to change it to a number?


Sorry, I'm really not following you on the above.
Try clarifying further with sample data, expected results, etc?
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:22,500 Files:370 Subscribers:66
xdemechanik
---


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 367
Default Function help excel 2003

Thanks, My drop down menu is located in I13 and that was my "x" value in the
original question. The drop down options a 1st Sunday 2nd Sunday etc., I
tried your solution with good results, however it only works when I replace
the labels "1st Sunday" with a number. I tried adding "1st Sunday" as a NAME
in hope of using the label "1st Sunday" in the formula.

=IF(O4='1st Sunday',M4," ") doesnt work

however =IF(O4=0,M4," ") does work

although I lose my original intention in labeling the days of the week.

Thanks

"Max" wrote:

Is there a way to keep my "x" labeled as 1st sunday etc.
or do I have to change it to a number?


Sorry, I'm really not following you on the above.
Try clarifying further with sample data, expected results, etc?
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:22,500 Files:370 Subscribers:66
xdemechanik
---





  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Max Max is offline
external usenet poster
 
Posts: 9,221
Default Function help excel 2003

=IF(O4='1st Sunday',M4," ") doesnt work

For text, you need to enclose it within double quotes in the expression, not
single quotes

This replacement should work fine:
=IF(O4="1st Sunday",M4,"")

p/s: To avoid potential downstream issues, would also suggest that you
always use
zero length null strings: "" instead of: " " as returns
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:22,500 Files:370 Subscribers:66
xdemechanik
---
  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,346
Default Function help excel 2003

Hi,

If your formula is as your wrote it

=IF(O4='1st Sunday',M4," ")

Then change it to read

=IF(O4="1st Sunday",M4,"")

The key here is the single quotes in your original formula verses the double
quotes in mine. The " " thing displays the same with "" and but your
really should use "" to mean blank, the other approach could lead to problems
elsewhere.

--
If this helps, please click the Yes button

Cheers,
Shane Devenshire


"Jason" wrote:

Thanks, My drop down menu is located in I13 and that was my "x" value in the
original question. The drop down options a 1st Sunday 2nd Sunday etc., I
tried your solution with good results, however it only works when I replace
the labels "1st Sunday" with a number. I tried adding "1st Sunday" as a NAME
in hope of using the label "1st Sunday" in the formula.

=IF(O4='1st Sunday',M4," ") doesnt work

however =IF(O4=0,M4," ") does work

although I lose my original intention in labeling the days of the week.

Thanks

"Max" wrote:

Is there a way to keep my "x" labeled as 1st sunday etc.
or do I have to change it to a number?


Sorry, I'm really not following you on the above.
Try clarifying further with sample data, expected results, etc?
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:22,500 Files:370 Subscribers:66
xdemechanik
---



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 sum function Josie Excel Worksheet Functions 2 January 12th 09 03:53 PM
IF Function (I THINK) Excel 2003 Bons Excel Worksheet Functions 5 November 3rd 08 04:28 PM
Help in VBA/Excel 2003 doesn't function William Asher Setting up and Configuration of Excel 0 April 30th 08 09:25 PM
If - Function in Excel 2003: HELP! Can'tExcel Excel Discussion (Misc queries) 3 March 3rd 08 03:47 PM
excel 2003 If function Stan Halls Excel Worksheet Functions 4 June 15th 06 08:42 PM


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

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"