Help please!! Data validation & automatically filling ce

tcy999

Board Regular
Joined
Oct 4, 2004
Messages
74
Hi there..
I have a data validation list containing the following items in column A(along with a blank cell at the top to allow a blank option)..

I need to automatically fill the next column (B) depending on which of these options is chosen, for example, if one of the first 4 options is chosen, then column B next to it needs to automatically say "Administration"....

Is this possible? I've tried several different methods but no joy - I'm sure there must be a simple solution!

Cost
Booking Error
Appointment delay
Unhelpful staff
Partner contacted by mistake
Late practitioner
Practitioner absent
Dissatisfied with outcome
Remarks by practitioner
Practitioner skills
Unprofessional conduct
Service not delivered
Poor facilities
Noisy facilities
Lack of privacy
Family facilities
Confidentiality: Outside Centre
Confidentiality: Socially
Confidentiality: Informing other agency
Discrimination on grounds of sex
Discrimination on grounds of ethnicity
Discrimination on grounds of sexuality
Discrimination on grounds of disability
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Hi, tcy999,

can this help you ?
Map1
ABCDEF
1Unhelpful staffbCosta
2Booking Errora
3Appointment delaya
4Unhelpful staffb
5Partner contacted by mistakeb
6Late practitionerc
7Practitioner absentc
Blad1 (2)


kind regards,
Erik
 
Upvote 0
Sorry bit of a newbie and don't understand....:(
The following formula seems to work but not with this many arguments - could you tell me whats wrong with it (apart from looking like a nightmare?!)

=IF(A8=L19, “Administration”,IF(A8=L20, “Administration”,IF(A8=L21, “Administration”,IF(A8=L22, “Administration”,IF(A8=L23, “Administration”,IF(A8=L24, “Service Delivery”,IF(A8=L25, “Service Delivery”))))))), (ANDIF(A8=L26, “Service Delivery”,IF(A8=L27, “Service Delivery”,IF(A8=L28, “Service Delivery”,IF(A8=L29, “Service Delivery”,IF(A8=L30, “Service Delivery”,IF(A8=L31, “Environment”,IF(A8=L32, “Environment”))))))), (ANDIF(A8=L34, “Environment”,IF(A8=L35, “Confidentiality”,IF(A8=L36, “Confidentiality”,IF(A8=L37, “Confidentiality”,IF(A8=L38, “Discrimination”,IF(A8=L39, “Discrimination”,IF(A8=L40, “Discrimination”))))))),(ANDIF(A8=L41, “Discrimination”,IF(A8=L33, “Environment”)))
 
Upvote 0
making formulas can be done "in steps"
divide your formula into some parts using different cells, afterwards you can put them together ...

example:
build formula in steps.xls
ABCD
12501putting together
21000350
31350
4in steps350350
1


kind regards,
Erik
 
Upvote 0
formulas are not displayed
Code:
B1 =IF(A1>100,1,0)		
B2 =IF(A2<100,1,0)
B3 =SUM(B1;B2)		
B4 =B3*(A1+A2)	

D2 =SUM(B1;B2)*(A1+A2)
D3 =SUM(IF(A1>100,1,0),B2)*(A1+A2)
D4 =SUM(IF(A1>100,1,0),IF(A2<100,1,0))*(A1+A2)
 
Upvote 0

Forum statistics

Threads
1,221,902
Messages
6,162,726
Members
451,782
Latest member
LizN

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top