Can I associate a flag /tag with an excel workbook?

smithar

New Member
Joined
Oct 29, 2002
Messages
6
Hi

I have a situation wherein, a particular style is applied to the excel. When the excel is opened, the program should check if a particular style has been applied to the excel, if not it has to prompt the user. Can I associate a tag or flag with a workbook?

regards,
Smitha
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
On 2002-10-30 03:56, smithar wrote:
Hi

I have a situation wherein, a particular style is applied to the excel. When the excel is opened, the program should check if a particular style has been applied to the excel, if not it has to prompt the user. Can I associate a tag or flag with a workbook?

regards,
Smitha

Welcome to the Board Smithar
Just have code to check the workbooks
Style property name for your style eg

<pre/>
Sub Tester()
Dim st As Style

For Each st In ActiveWorkbook.Styles
MsgBox st.Name
Next
End Sub
</pre>
 
Upvote 0

Forum statistics

Threads
1,214,649
Messages
6,120,732
Members
448,987
Latest member
marion_davis

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top