Message 1 of 3
choosing rev table in ilogic
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
hi. I produce drawings for 2 companies, therefore I have 2 title blocks. Up until recently the title blocks were very similar (just changing company logo), so I used a bit of ilogic and created a form to switch between the 2.
If Title_Block = "Company A" Then ActiveSheet.TitleBlock = "CompanyA" ElseIf Title_Block = "Company B" Then ActiveSheet.TitleBlock = "CompanyB" End If
However, Company B decided to revamp its title block. Among other changes, the revision history block was extended. So now i have 2 revision table styles.
Is there a way to extend my rule to include rev history blocks?