Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Conditional formatting (?) help

I am trying to create a database in excel that inventories the software that
our firm owns. The workbook shows a computer name, user, and then several
software categories each associated with a list. (example: under 'Autodesk
Product', options would be 'none', 'Map 2008', 'Civil 3D 2008', etc...)
However, I would like to program the spreadsheet so that if anything but the
'none' option is selected, a second row is automatically created and attached
to the same computer, so that it is possible to associate more than one
product in a given category with that computer. Is this possible? Hopefully
the description makes sense, I am a novice excel user and am trying to ensure
this spreadsheet is as user-friendly as possible for future use. Please
help!!!
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 130
Default Conditional formatting (?) help

Try this in the "ThisWorkbook" code module
Not knowing what cell the computer name is in I could not add that code.


Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)

If Target = "None" Then
ActiveCell.Insert xlDown
'insert new row below

'copy machine above

End If
End Sub


"dcolestock" wrote:

I am trying to create a database in excel that inventories the software that
our firm owns. The workbook shows a computer name, user, and then several
software categories each associated with a list. (example: under 'Autodesk
Product', options would be 'none', 'Map 2008', 'Civil 3D 2008', etc...)
However, I would like to program the spreadsheet so that if anything but the
'none' option is selected, a second row is automatically created and attached
to the same computer, so that it is possible to associate more than one
product in a given category with that computer. Is this possible? Hopefully
the description makes sense, I am a novice excel user and am trying to ensure
this spreadsheet is as user-friendly as possible for future use. Please
help!!!

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
Conditional formatting--different formatting depending on cell con Tammy S. Excel Discussion (Misc queries) 3 March 30th 09 08:11 PM
Formatting Conditional Formatting Icon Sets The Rook[_2_] Excel Discussion (Misc queries) 3 March 7th 09 08:48 PM
Formatting cells in a column with conditional formatting? shamor Excel Discussion (Misc queries) 8 May 19th 08 10:11 PM
Protect Cell Formatting including Conditional Formatting Mick Jennings Excel Discussion (Misc queries) 5 November 13th 07 05:32 PM
Conditional Formatting that will display conditional data BrainFart Excel Worksheet Functions 1 September 13th 05 05:45 PM


All times are GMT +1. The time now is 01:05 AM.

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

About Us

"It's about Microsoft Excel"