Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7
Default Checking whether a field is bold.

Hi,

Looking for a command to do the following

=IF (TEXT(A1) IS BOLD,<ADDITION FUNCTION,<DIFFERENT FUNCTION)

Any ideas?

Trying to put together a Line of Credit calculator, where my pay days are
bolded, so
to work out a pay day compared to an interest day I need the function to
tell me if it's bold.

I believe I have already worked out the function if both the interest day
and pay day fall on the same day, just
need to work out if the date is bold or not.

Thank you in advance.
Craig.


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 35,218
Default Checking whether a field is bold.

You could use a UserDefined Function:

Option Explicit
Function isBold(rng As Range) As Variant

application.volatile

If rng(1).Font.Bold Then
isBold = True
ElseIf IsNull(rng(1).Font.Bold) Then
isBold = "Mixed"
Else
isBold = False
End If

End Function

Then you can use it in a worksheet cell like:
=isbold(a1)

or in your sample:
=if(isbold(a1)=true,a1+a2,a1-a2)

But be aware that changing the boldness of a cell is not something that causes
excel to recalculate. Hit alt-ctrl-F9 to force it recalc (before you trust the
results).

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

Short course:

Open your workbook.
Hit alt-f11 to get to the VBE (where macros/UDF's live)
hit ctrl-R to view the project explorer
Find your workbook.
should look like: VBAProject (yourfilename.xls)

right click on the project name
Insert, then Module
You should see the code window pop up on the right hand side

Paste the code in there.

Now go back to excel.
and type your formula into a test cell.

"Craig & Co." wrote:

Hi,

Looking for a command to do the following

=IF (TEXT(A1) IS BOLD,<ADDITION FUNCTION,<DIFFERENT FUNCTION)

Any ideas?

Trying to put together a Line of Credit calculator, where my pay days are
bolded, so
to work out a pay day compared to an interest day I need the function to
tell me if it's bold.

I believe I have already worked out the function if both the interest day
and pay day fall on the same day, just
need to work out if the date is bold or not.

Thank you in advance.
Craig.


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7
Default Checking whether a field is bold.

That's exactly what I needed.

Will now use 'UserDefined' Functions for other things too.

Thank you for this valuable insight into the workings of Excel.

Cheers
Craig.

"Dave Peterson" wrote in message
...
You could use a UserDefined Function:

Option Explicit
Function isBold(rng As Range) As Variant

application.volatile

If rng(1).Font.Bold Then
isBold = True
ElseIf IsNull(rng(1).Font.Bold) Then
isBold = "Mixed"
Else
isBold = False
End If

End Function

Then you can use it in a worksheet cell like:
=isbold(a1)

or in your sample:
=if(isbold(a1)=true,a1+a2,a1-a2)

But be aware that changing the boldness of a cell is not something that

causes
excel to recalculate. Hit alt-ctrl-F9 to force it recalc (before you

trust the
results).

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

Short course:

Open your workbook.
Hit alt-f11 to get to the VBE (where macros/UDF's live)
hit ctrl-R to view the project explorer
Find your workbook.
should look like: VBAProject (yourfilename.xls)

right click on the project name
Insert, then Module
You should see the code window pop up on the right hand side

Paste the code in there.

Now go back to excel.
and type your formula into a test cell.

"Craig & Co." wrote:

Hi,

Looking for a command to do the following

=IF (TEXT(A1) IS BOLD,<ADDITION FUNCTION,<DIFFERENT FUNCTION)

Any ideas?

Trying to put together a Line of Credit calculator, where my pay days

are
bolded, so
to work out a pay day compared to an interest day I need the function to
tell me if it's bold.

I believe I have already worked out the function if both the interest

day
and pay day fall on the same day, just
need to work out if the date is bold or not.

Thank you in advance.
Craig.


--

Dave Peterson



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
Alphabetically list of names BOLD and NOT bold Lerner Excel Discussion (Misc queries) 13 March 1st 09 02:37 PM
Checking status of issues based on first two digits of a field The Fool on the Hill Excel Discussion (Misc queries) 7 February 26th 08 03:12 PM
Checking on first two digits of field The Fool on the Hill Excel Discussion (Misc queries) 5 February 26th 08 07:46 AM
Join bold and non-bold text in one cell bkincaid Excel Discussion (Misc queries) 3 March 21st 06 12:58 AM
Checking database field Chris Dunigan Excel Programming 2 November 24th 03 11:13 AM


All times are GMT +1. The time now is 02:06 AM.

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"