Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
RJB RJB is offline
external usenet poster
 
Posts: 86
Default 'Splitting' Rows?

I use an Excel sheet to capture brainstormed ideas, and then break down the
tasks involved.

I have it set up now where, say, A2:A4 is a merged cell for the idea, and
B2, B3, and B4 are bordered off for the tasks. C2, C3, and C4 have list boxes
for priorities and D2, D3, and D4, have list boxes for to whom the task is
assigned.

Trouble is, some ideas need two tasks, some need four (or more).

I'd like to have the user fill in cell A2 with the idea (I have it on
AutoFit if they're verbose), and then B2 for the first task, C2 with the
priority box, and D2 with the assigned employee.

If there is a second task to be added to that idea, I'd like there to be an
"Add New Task" button, which will:
i) add B3 for a new task
ii) add C3 with the proper list-picking validation
iii) add D3 with the proper list-picking validation
iv) merge A2 with A3 so it's all one big master row.

.... and so on.

Thoughts?


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 29
Default 'Splitting' Rows?

I'm thinking the situationwould be easier to solve if you changed the
structure of the worksheet so that the "big ideas" were in
horizontally merged cells, not vertically merged ones. For instance,
if you put your "big idea" in cells A2:D2 (merged) then you could
simply copy/insert a full row to expand the big idea. -- a comparative
piece of cake.

/ Tyla /

On Mar 19, 8:57 pm, RJB wrote:
I use an Excel sheet to capture brainstormed ideas, and then break down the
tasks involved.

I have it set up now where, say, A2:A4 is a merged cell for the idea, and
B2, B3, and B4 are bordered off for the tasks. C2, C3, and C4 have list boxes
for priorities and D2, D3, and D4, have list boxes for to whom the task is
assigned.

Trouble is, some ideas need two tasks, some need four (or more).

I'd like to have the user fill in cell A2 with the idea (I have it on
AutoFit if they're verbose), and then B2 for the first task, C2 with the
priority box, and D2 with the assigned employee.

If there is a second task to be added to that idea, I'd like there to be an
"Add New Task" button, which will:
i) add B3 for a new task
ii) add C3 with the proper list-picking validation
iii) add D3 with the proper list-picking validation
iv) merge A2 with A3 so it's all one big master row.

... and so on.

Thoughts?



  #3   Report Post  
Posted to microsoft.public.excel.programming
RJB RJB is offline
external usenet poster
 
Posts: 86
Default 'Splitting' Rows?

For a wide variety of reasons, that's not doable.

Not the least of which is, I don't have control over design... Just function!

(We have a coupla hundred thousand of these printed, but we're trying to put
an identical form on Sharepoint... We have several similar worksheets that
are all gatefold on paper, so to go from vertical to horizontal now would be
very confusing. Probably not too confusing for the thousands of users, but
wayyyy too confusing for the guy paying for the project, if you catch my
drift.)

I was toying with doing this in Word with protected forms, but I need to
have separate sheets with the "big ideas" on the left-hand column, with
different grids along the right of each.

"Tyla" wrote:

I'm thinking the situationwould be easier to solve if you changed the
structure of the worksheet so that the "big ideas" were in
horizontally merged cells, not vertically merged ones. For instance,
if you put your "big idea" in cells A2:D2 (merged) then you could
simply copy/insert a full row to expand the big idea. -- a comparative
piece of cake.

/ Tyla /

On Mar 19, 8:57 pm, RJB wrote:
I use an Excel sheet to capture brainstormed ideas, and then break down the
tasks involved.

I have it set up now where, say, A2:A4 is a merged cell for the idea, and
B2, B3, and B4 are bordered off for the tasks. C2, C3, and C4 have list boxes
for priorities and D2, D3, and D4, have list boxes for to whom the task is
assigned.

Trouble is, some ideas need two tasks, some need four (or more).

I'd like to have the user fill in cell A2 with the idea (I have it on
AutoFit if they're verbose), and then B2 for the first task, C2 with the
priority box, and D2 with the assigned employee.

If there is a second task to be added to that idea, I'd like there to be an
"Add New Task" button, which will:
i) add B3 for a new task
ii) add C3 with the proper list-picking validation
iii) add D3 with the proper list-picking validation
iv) merge A2 with A3 so it's all one big master row.

... and so on.

Thoughts?




  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 29
Default 'Splitting' Rows?

Nice to have the responsiblity without the authority, isn't it?

OK, Plan B would be to have a named range squirreled away in a safe
place to use as a template for the Column B-D cells. Each of these
cells would have the formatting, drop-downs, validation, etc. already
defined for them -- using either named ranges or absolute cell
addresses.
Next, put a button on the toolbar (or a floating toolbar, or -- worst
case -- on the worksheet itself) which will insert a new row into the
worksheet and copy the template cells into columns B-D of that row.
(Making the template itself a full row might be a shade easier). The
VBA behind this would have to validate that the active cell is in a
valid location for a new "idea" row shouldn't be a big deal.
Or not...

/ Tyla /




On Mar 20, 6:40 am, RJB wrote:
For a wide variety of reasons, that's not doable.

Not the least of which is, I don't have control over design... Just function!

(We have a coupla hundred thousand of these printed, but we're trying to put
an identical form on Sharepoint... We have several similar worksheets that
are all gatefold on paper, so to go from vertical to horizontal now would be
very confusing. Probably not too confusing for the thousands of users, but
wayyyy too confusing for the guy paying for the project, if you catch my
drift.)

I was toying with doing this in Word with protected forms, but I need to
have separate sheets with the "big ideas" on the left-hand column, with
different grids along the right of each.

"Tyla" wrote:
I'm thinking the situationwould be easier to solve if you changed the
structure of the worksheet so that the "big ideas" were in
horizontally merged cells, not vertically merged ones. For instance,
if you put your "big idea" in cells A2:D2 (merged) then you could
simply copy/insert a full row to expand the big idea. -- a comparative
piece of cake.


/Tyla/


On Mar 19, 8:57 pm, RJB wrote:
I use anExcelsheet to capture brainstormed ideas, and then break down the
tasks involved.


I have it set up now where, say, A2:A4 is a merged cell for the idea, and
B2, B3, and B4 are bordered off for the tasks. C2, C3, and C4 have list boxes
for priorities and D2, D3, and D4, have list boxes for to whom the task is
assigned.


Trouble is, some ideas need two tasks, some need four (or more).


I'd like to have the user fill in cell A2 with the idea (I have it on
AutoFit if they're verbose), and then B2 for the first task, C2 with the
priority box, and D2 with the assigned employee.


If there is a second task to be added to that idea, I'd like there to be an
"Add New Task" button, which will:
i) add B3 for a new task
ii) add C3 with the proper list-picking validation
iii) add D3 with the proper list-picking validation
iv) merge A2 with A3 so it's all one big master row.


... and so on.


Thoughts?



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Splitting Rows - AGAIN Fishman4 Excel Worksheet Functions 0 December 21st 06 02:26 PM
Splitting Rows AriCara Excel Discussion (Misc queries) 0 September 29th 06 08:17 PM
Splitting Rows ALoecher New Users to Excel 1 March 10th 06 09:26 PM
Splitting Rows jack Excel Discussion (Misc queries) 3 January 31st 05 09:12 PM
Splitting Rows Michael Koerner Excel Programming 4 November 10th 03 03:09 PM


All times are GMT +1. The time now is 12:38 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"