PC Review


Reply
Thread Tools Rate Thread

Data Entry & tabbed spreadsheet question

 
 
Blasting Cap
Guest
Posts: n/a
 
      17th Nov 2006
I have to make a change to some data being collected in preparation for
a web app that I am preparing to write.

I need to have a half-dozen users open up a spreadsheet and list
customer numbers & names, PO's and a user code to a single sheet inside
a workbook.

Then on each of 6 other tabs, I need to reproduce the same sheet, with
the exception being that sheet 2 needs to be for user 2 and sheet 3
needs to be for user 3. Either that, or I need to do it in reverse
order - where a user would update sheet 2,3 & 4 and sheet 1 is a
compiled list of those entries, one after the other.

The second option, of the two, would be the preferable, as that's
similar to how they do it now (with the exception of the "master" sheet
of all the orders).

Anyone know how to do this? (specifically the adding of a new record to
sheet one from the 6 other sheets in the workbook).

Thanks,

BC
 
Reply With Quote
 
 
 
 
=?Utf-8?B?dWZvX3BpbG90?=
Guest
Posts: n/a
 
      17th Nov 2006
=IF(Sheet1!A1<>"",Sheet1!A1,"")
If you place this in A1 on your 'master sheet",
you can auto fill it .
Then when you need sheet2, change sheet1 to sheet2 for the cells that will
read from sheet2.
Try clicking on the cell after pasting this formula in in it, then
selecting the "fx" icon
that will enable you to try you own versions of formula to how thet suit you
best.

"Blasting Cap" wrote:

> I have to make a change to some data being collected in preparation for
> a web app that I am preparing to write.
>
> I need to have a half-dozen users open up a spreadsheet and list
> customer numbers & names, PO's and a user code to a single sheet inside
> a workbook.
>
> Then on each of 6 other tabs, I need to reproduce the same sheet, with
> the exception being that sheet 2 needs to be for user 2 and sheet 3
> needs to be for user 3. Either that, or I need to do it in reverse
> order - where a user would update sheet 2,3 & 4 and sheet 1 is a
> compiled list of those entries, one after the other.
>
> The second option, of the two, would be the preferable, as that's
> similar to how they do it now (with the exception of the "master" sheet
> of all the orders).
>
> Anyone know how to do this? (specifically the adding of a new record to
> sheet one from the 6 other sheets in the workbook).
>
> Thanks,
>
> BC
>

 
Reply With Quote
 
Blasting Cap
Guest
Posts: n/a
 
      17th Nov 2006
If I'm doing it right, it always puts the record in A1 on the first
sheet it comes to in it.

What I'd wanted is to have:


Sheet2:A1 = "Sheet2"
Sheet3:A1 = "Sheet3"
Sheet7:A1 = "Sheet7"

Sheet1:A1 = Sheet2
Sheet1:A2 = Sheet3
Sheet1:A3 = Sheet7

and so on - where Sheet1 is essentially a row in a table. Sheets 4,5 &
6 cell A1 would all have nothing in them.

=IF(Sheet2!A2<>"",Sheet2!A2,IF(Sheet3!A2<>"",Sheet3!A2,IF(Sheet4!A2<>"",Sheet4!A2,IF(Sheet5!A2<>"",Sheet5!A2,IF(Sheet6!A2<>"",Sheet6!A2,IF(Sheet7!A2<>"",Sheet7!A2,""))))))

is how I changed the formula.


I'm not sure if this is the right tool for what I want to do. Any idea?

BC




ufo_pilot wrote:
> =IF(Sheet1!A1<>"",Sheet1!A1,"")
> If you place this in A1 on your 'master sheet",
> you can auto fill it .
> Then when you need sheet2, change sheet1 to sheet2 for the cells that will
> read from sheet2.
> Try clicking on the cell after pasting this formula in in it, then
> selecting the "fx" icon
> that will enable you to try you own versions of formula to how thet suit you
> best.
>
> "Blasting Cap" wrote:
>
>> I have to make a change to some data being collected in preparation for
>> a web app that I am preparing to write.
>>
>> I need to have a half-dozen users open up a spreadsheet and list
>> customer numbers & names, PO's and a user code to a single sheet inside
>> a workbook.
>>
>> Then on each of 6 other tabs, I need to reproduce the same sheet, with
>> the exception being that sheet 2 needs to be for user 2 and sheet 3
>> needs to be for user 3. Either that, or I need to do it in reverse
>> order - where a user would update sheet 2,3 & 4 and sheet 1 is a
>> compiled list of those entries, one after the other.
>>
>> The second option, of the two, would be the preferable, as that's
>> similar to how they do it now (with the exception of the "master" sheet
>> of all the orders).
>>
>> Anyone know how to do this? (specifically the adding of a new record to
>> sheet one from the 6 other sheets in the workbook).
>>
>> Thanks,
>>
>> BC
>>

 
Reply With Quote
 
susiedba@hotmail.com
Guest
Posts: n/a
 
      20th Nov 2006
you're a ****ing retard don't use Excel use a DATABASE

Lose the training wheels, kids

-Aaron


Blasting Cap wrote:
> If I'm doing it right, it always puts the record in A1 on the first
> sheet it comes to in it.
>
> What I'd wanted is to have:
>
>
> Sheet2:A1 = "Sheet2"
> Sheet3:A1 = "Sheet3"
> Sheet7:A1 = "Sheet7"
>
> Sheet1:A1 = Sheet2
> Sheet1:A2 = Sheet3
> Sheet1:A3 = Sheet7
>
> and so on - where Sheet1 is essentially a row in a table. Sheets 4,5 &
> 6 cell A1 would all have nothing in them.
>
> =IF(Sheet2!A2<>"",Sheet2!A2,IF(Sheet3!A2<>"",Sheet3!A2,IF(Sheet4!A2<>"",Sheet4!A2,IF(Sheet5!A2<>"",Sheet5!A2,IF(Sheet6!A2<>"",Sheet6!A2,IF(Sheet7!A2<>"",Sheet7!A2,""))))))
>
> is how I changed the formula.
>
>
> I'm not sure if this is the right tool for what I want to do. Any idea?
>
> BC
>
>
>
>
> ufo_pilot wrote:
> > =IF(Sheet1!A1<>"",Sheet1!A1,"")
> > If you place this in A1 on your 'master sheet",
> > you can auto fill it .
> > Then when you need sheet2, change sheet1 to sheet2 for the cells that will
> > read from sheet2.
> > Try clicking on the cell after pasting this formula in in it, then
> > selecting the "fx" icon
> > that will enable you to try you own versions of formula to how thet suit you
> > best.
> >
> > "Blasting Cap" wrote:
> >
> >> I have to make a change to some data being collected in preparation for
> >> a web app that I am preparing to write.
> >>
> >> I need to have a half-dozen users open up a spreadsheet and list
> >> customer numbers & names, PO's and a user code to a single sheet inside
> >> a workbook.
> >>
> >> Then on each of 6 other tabs, I need to reproduce the same sheet, with
> >> the exception being that sheet 2 needs to be for user 2 and sheet 3
> >> needs to be for user 3. Either that, or I need to do it in reverse
> >> order - where a user would update sheet 2,3 & 4 and sheet 1 is a
> >> compiled list of those entries, one after the other.
> >>
> >> The second option, of the two, would be the preferable, as that's
> >> similar to how they do it now (with the exception of the "master" sheet
> >> of all the orders).
> >>
> >> Anyone know how to do this? (specifically the adding of a new record to
> >> sheet one from the 6 other sheets in the workbook).
> >>
> >> Thanks,
> >>
> >> BC
> >>


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Data entry when using a tabbed control Rich Microsoft Access Form Coding 1 3rd Mar 2009 02:27 PM
Tabbed Form Data Entry ATT News Microsoft Access Forms 0 9th Jul 2008 05:20 AM
Data Entry & tabbed spreadsheet question Blasting Cap Microsoft Excel Discussion 3 20th Nov 2006 09:43 PM
Re: How do you get to the last data entry in a spreadsheet using shor. JulieD Microsoft Excel Worksheet Functions 1 15th Apr 2005 02:43 PM
Re: How do you get to the last data entry in a spreadsheet using shor. JulieD Microsoft Excel Worksheet Functions 0 14th Apr 2005 05:24 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 10:22 AM.