if bold formula needed

snowman1976

Board Regular
Joined
Nov 4, 2008
Messages
191
hello
i have a column in sheet 1 that lists different items, some are bold text and others are not. the bolding is significant since everyone that uses it understands why things are bolded or not (signifies arrival of goods).

in sheet2, I want to reference sheet one and only return the value in sheet1 if its bolded.
for example in cell A1 (in plain english):

=if(sheet1!A1=bold, sheet1!a1, else "")

i cant find any type of formula that will do this. Does anyone have any thoughts /suggestions how I could do this??

thanks
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
A formula can't refer to the format of another cell, only the actual value.

How are the values bolded? Via conditional formatting?
 
Upvote 0
Formatting should only be used to make data more appealling to the eyes.
It should not effect the meaning of what the eyes see.

Because it is very difficult to reverse engineer formatting..

I recommend considering a different method to flag the arrival of goods.
Like Putting an X in Column B
Or more usefull would be to enter a DATE in column B when the product arrived.
 
Upvote 1
But alas, if you must, this will require VBA.

Press ALT + F11 to open the VBA window.
Click Insert - Module.
Paste the following

Code:
Public Function IsBold(c As Range) As Boolean
On Error GoTo Handler
IsBold = c.Font.Bold
Exit Function
Handler:
If Err.Number = 94 Then IsBold = True
End Function

Then you can use the IsBold function to test if a cell is bold.
=IF(ISBOLD(sheet1!A1),sheet1!A1,"")
 
Upvote 0
hi Jonmo, thanks for the help. I agree that the bolding shouldnt be a reference point, but its been inplanted here for 30+ years and its difficult to make the dinosaurs change procedures.

Thanks for the VBA, this will help tremendously.
 
Upvote 0

Forum statistics

Threads
1,215,755
Messages
6,126,683
Members
449,329
Latest member
tommyarra

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