IN AN IF FORMULA COPY STRING OF DATA IF A CELL IS CORRECT

  • Thread starter Might also be another tricky formula
  • Start date
M

Might also be another tricky formula

I have a chart that I need help with. Is there formula that can carry over
data from one specific row to another chart if a salesperson's initial is
imputed. I'm trying to create seperate charts for each sales person without
having to re-imput the data onto another chart or copy and paste.

A B C D
E
1 Date Customer Name Salesperson's Initials Amount
2 10/10/05 Smith JV
$500.00
3 10/11/05 Johnson CF
$250.00

For example: If row #2 with JV is imputted in the master screen, can row
#2's information be automatically displayed onto another chart without
re-imputing or copying?

Please Help
Thank You
JV
 
J

Jezebel

You need three elements to make it work:

1) the range containing the source data, as in your example. Call this range
'SourceData'. Put the initials in the first column within this range.
2) a cell containing the initials. Call this cell 'Initials'.
3) a range used as the source for the chart. The cells in this range will
contain Vlookup() formulas to retrieve the data for the selected
salesperson --

=VLOOKUP(Initials, SourceData, n)

where n is the column number of the data you want.


"Might also be another tricky formula" <Might also be another tricky
(e-mail address removed)> wrote in message
news:[email protected]...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top