Signature Lines Automatcally Show

south0085

Board Regular
Joined
Aug 15, 2011
Messages
141
It was hard to title this one. Thanks in advance for your help.

In cells A30 through A34, I have the following list:

Assistant Manager
Manager
Coordinator or Treasurer
Vice President
President

We have an "approval level" control that determines who needs to sign the requisition depending on the amount. Here is the approval key:

Up to $100 Assistant Manager
$101-$500 Manager
$501-$2000 Coordinator or Treasurer
$501-$2000 Vice President
Over $2000 President

Depending on the amount in cell J27, I would like the appropriate signature people to automatically pop up.

Is this possible?
 
Last edited:

Excel Facts

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.
Hi,

Your approval key, $501-$2000 is duplicated for Coordinator or Treasurer, and Vice President, is that correct? So any of the three can sign?
 
Last edited:
Upvote 0
Hi,

Your approval key, $505-$2000 is duplicated for Coordinator or Treasurer, and Vice President, is that correct? So any of the three can sign?

It means, if it's $501-$2000, then the (Coordinator or Treasure....whichever one is avaialbe) AND the (Vice President) must sign.
 
Upvote 0
Would something like this help?
I changed the Title list.


Book1
ABJKL
2799Assistant Manager
28100Assistant Manager
29
30Assistant Manager0
31Manager101Manager
32Coordinator or Treasurer and Vice President500Manager
33President510Coordinator or Treasurer and Vice President
342000Coordinator or Treasurer and Vice President
355000President
Sheet17
Cell Formulas
RangeFormula
L27=IF(OR(J27={"",0}),"",LOOKUP(J27,{0,101,501,2001,9.9E+307},A$30:A$33))
 
Upvote 0
Would something like this help?
I changed the Title list.

ABJKL
2799Assistant Manager
28100Assistant Manager
29
30Assistant Manager0
31Manager101Manager
32Coordinator or Treasurer and Vice President500Manager
33President510Coordinator or Treasurer and Vice President
342000Coordinator or Treasurer and Vice President
355000President

<colgroup><col style="width: 25pxpx"><col><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet17

Worksheet Formulas
CellFormula
L27=IF(OR(J27={"",0}),"",LOOKUP(J27,{0,101,501,2001,9.9E+307},A$30:A$33))

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>

I think that's great. But the problem is "Coordinator or Treasure" is one person. And the "Vice President" is a separate person. I need there to be two signature lines. Like this:

Coordinator or Treasurer ________________________

Vice President_________________________________
 
Upvote 0
Oh wait. I think I've made this confusing. My apologies. I want cells A30 through A34 to populate on top of each other. So let's say the requisition is $503, I want these to pop up:

Assistant Manager____________
Manager______________
Coordinator or Treasurer______________
Vice PResident___________

Let's assume it's $4, then it would pop up with this:

Assistant Manager___________

Let's assume it's $64,000

Assistant Manager____________
Manager______________
Coordinator or Treasurer______________
Vice PResident___________
President____________
 
Upvote 0
That would require a separate formula for each line, see if this works for you:


Cell Formulas
RangeFormula
A30=IF(J$27>0,"Assistant Manager"&REPT("_",30),"")
A31=IF(J$27>100,"Manager"&REPT("_",30),"")
A32=IF(J$27>500,"Coordinator or Treasurer"&REPT("_",30),"")
A33=IF(J$27>500,"Vice President"&REPT("_",30),"")
A34=IF(J$27>2000,"President"&REPT("_",30),"")
 
Upvote 0
That would require a separate formula for each line, see if this works for you:

ABJ
272200
28
29
30Assistant Manager______________________________
31Manager______________________________
32Coordinator or Treasurer______________________________
33Vice President______________________________
34President______________________________

<colgroup><col style="width: 25pxpx"><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet17

Worksheet Formulas
CellFormula
A30=IF(J$27>0,"Assistant Manager"&REPT("_",30),"")
A31=IF(J$27>100,"Manager"&REPT("_",30),"")
A32=IF(J$27>500,"Coordinator or Treasurer"&REPT("_",30),"")
A33=IF(J$27>500,"Vice President"&REPT("_",30),"")
A34=IF(J$27>2000,"President"&REPT("_",30),"")

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>

Perfect! Thank you!
 
Upvote 0
You're welcome.

Play with the number 30 (increase or decrease) in each of my formulas to line up the signature line if you like.
 
Upvote 0

Forum statistics

Threads
1,215,001
Messages
6,122,648
Members
449,092
Latest member
peppernaut

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