Additional formulas..

vampcatt

New Member
Joined
Feb 22, 2002
Messages
26
I have about 10 columns of data that I need to have formulas for..
I got a formula from here for column A.. so.. any future formula's cant be the VLOOKUP.

I have the following data to apply to all the text on column D -

shirt =4x
pants =4x
hat =8x
shoes =4x
gloves =8x

X is a constant value dedicated to cell A2 of the "admin" sheet.. all the text is on sheet 2 .

ANy suggestions? Hopefully if I can get this formula going I can use the same format for additional column formulas.

THANKS in advance!
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
Hi vampcatt:
It is not clear what you are looking for ... please explain what you want to do especially the logic -- then we can work on the associated syntax and the formulas!
 
Upvote 0
Your information is not very clear.

What do you put in the 10 columns?

Why can you not use Vlookup?

Can you give a very concise example?

What result do you want to achieve?

What calculation require a formula?
 
Upvote 0
<<grin>>
OK.. let me get together a little better example with some more info..
I thought Vlookup could only be used on the first column of a spreadsheet?

Let me get my examples together and will repost.. sorry.. lol
 
Upvote 0
On 2002-03-23 08:44, vampcatt wrote:


I have about 10 columns of data that I need to have formulas for..
I got a formula from here for column A.. so.. any future formula's cant be the VLOOKUP.

I have the following data to apply to all the text on column D -

shirt =4x
pants =4x
hat =8x
shoes =4x
gloves =8x

X is a constant value dedicated to cell A2 of the "admin" sheet.. all the text is on sheet 2 .

ANy suggestions? Hopefully if I can get this formula going I can use the same format for additional column formulas.

THANKS in advance!

You could make a 2-column list of all items, say, in the Admin sheet:

{"gloves ",8;
"hat ",8;
"pants ",4;
"shirt ",4;
"shoes ",4}

Select all of the cells of this list and give it a name, e.g., FLIST (from factor list).

The usage would be, given that you have,

'shirt' in A2 and 25 in B2 as quantity, you can compute the total in C2 by:

=B2*VLOOKUP(A2,FLIST,2,0)*Price

where Price=X.

Aladin
This message was edited by Aladin Akyurek on 2002-03-23 09:53
This message was edited by Aladin Akyurek on 2002-03-23 09:54
 
Upvote 0

Forum statistics

Threads
1,214,567
Messages
6,120,268
Members
448,953
Latest member
Dutchie_1

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