Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
philip
 
Posts: n/a
Default problems for counting

Is there any way to count the cell with bold text ( the bold text is
conditional formatted), I have been try to search the solution from the
internet with no luck...

Please help


many thanks








  #3   Report Post  
philip
 
Posts: n/a
Default

thanks for your information.

However I already use up 3 CF criteria, the criteria I setup is

1- $A1=" " format text to bold
2- $A1=1 format text to color blue & italic
3-$A1="xx" format text to red & italic

what I need to count only the bolded text..



"Don Guillett" wrote:

You can use the same criteria as the conditional formatting criteria

--
Don Guillett
SalesAid Software

"philip" wrote in message
...
Is there any way to count the cell with bold text ( the bold text is
conditional formatted), I have been try to search the solution from the
internet with no luck...

Please help


many thanks











  #4   Report Post  
William Horton
 
Posts: n/a
Default

I don't know if there is a formula / function that you can use for that. At
least I couldn't find one. However, you could use VBA code/macro to
accomplish this.

Try the below code.

Sub CountCellsBoldFormatting()
Dim X As Integer
X = 0
For Each Cell In Range("A1:A10")
If Cell.Font.Bold = True Then
X = X + 1
End If
Next Cell
MsgBox "There were " & X & " cells with bold formatting."
End Sub

Change the range to whatever your range is. You could also display the
answer in another cell rather than in a message box if you so choose.

Hope this helps.

Thanks,
Bill Horton

"philip" wrote:

thanks for your information.

However I already use up 3 CF criteria, the criteria I setup is

1- $A1=" " format text to bold
2- $A1=1 format text to color blue & italic
3-$A1="xx" format text to red & italic

what I need to count only the bolded text..



"Don Guillett" wrote:

You can use the same criteria as the conditional formatting criteria

--
Don Guillett
SalesAid Software

"philip" wrote in message
...
Is there any way to count the cell with bold text ( the bold text is
conditional formatted), I have been try to search the solution from the
internet with no luck...

Please help


many thanks











  #5   Report Post  
philip
 
Posts: n/a
Default

thanks

I have try your VBA code, but it only work on the nornal format cell in
bold, it does not work on conditional formatting satituation....

For my curiosity, in your VAB code, how to display the answer in another
cell..

thanks again


"William Horton" wrote:

I don't know if there is a formula / function that you can use for that. At
least I couldn't find one. However, you could use VBA code/macro to
accomplish this.

Try the below code.

Sub CountCellsBoldFormatting()
Dim X As Integer
X = 0
For Each Cell In Range("A1:A10")
If Cell.Font.Bold = True Then
X = X + 1
End If
Next Cell
MsgBox "There were " & X & " cells with bold formatting."
End Sub

Change the range to whatever your range is. You could also display the
answer in another cell rather than in a message box if you so choose.

Hope this helps.

Thanks,
Bill Horton

"philip" wrote:

thanks for your information.

However I already use up 3 CF criteria, the criteria I setup is

1- $A1=" " format text to bold
2- $A1=1 format text to color blue & italic
3-$A1="xx" format text to red & italic

what I need to count only the bolded text..



"Don Guillett" wrote:

You can use the same criteria as the conditional formatting criteria

--
Don Guillett
SalesAid Software

"philip" wrote in message
...
Is there any way to count the cell with bold text ( the bold text is
conditional formatted), I have been try to search the solution from the
internet with no luck...

Please help


many thanks













  #6   Report Post  
Duke Carey
 
Posts: n/a
Default

Don's response is correct. Use a COUNTIF() function and use the same
criteria you used for conditional formatting. For this purpose, though,
you're putting it into a cell, not into conditional formatting


"philip" wrote:

thanks for your information.

However I already use up 3 CF criteria, the criteria I setup is

1- $A1=" " format text to bold
2- $A1=1 format text to color blue & italic
3-$A1="xx" format text to red & italic

what I need to count only the bolded text..



"Don Guillett" wrote:

You can use the same criteria as the conditional formatting criteria

--
Don Guillett
SalesAid Software

"philip" wrote in message
...
Is there any way to count the cell with bold text ( the bold text is
conditional formatted), I have been try to search the solution from the
internet with no luck...

Please help


many thanks











  #7   Report Post  
William Horton
 
Posts: n/a
Default

Use this code to put the answer in cell A11.

Sub CountCellsBoldFormatting()
Dim X As Integer
X = 0
For Each Cell In Range("A1:A10")
If Cell.Font.Bold = True Then
X = X + 1
End If
Next Cell
ActiveSheet.Range("A11").Value = X
End Sub

Perhaps you could adjust the code to get what you are after. Instead of
If Cell.Font.Bold = True Then use
If Cell.Value = " " Then

This way you are checking for the value that would make the text bold.
By the way if " " was in a cell you wouldn't be able to see the bold anyway.
Maybe I'm not understanding properly.

Hope this helps.

Thanks,
Bill Horton

"philip" wrote:

thanks

I have try your VBA code, but it only work on the nornal format cell in
bold, it does not work on conditional formatting satituation....

For my curiosity, in your VAB code, how to display the answer in another
cell..

thanks again


"William Horton" wrote:

I don't know if there is a formula / function that you can use for that. At
least I couldn't find one. However, you could use VBA code/macro to
accomplish this.

Try the below code.

Sub CountCellsBoldFormatting()
Dim X As Integer
X = 0
For Each Cell In Range("A1:A10")
If Cell.Font.Bold = True Then
X = X + 1
End If
Next Cell
MsgBox "There were " & X & " cells with bold formatting."
End Sub

Change the range to whatever your range is. You could also display the
answer in another cell rather than in a message box if you so choose.

Hope this helps.

Thanks,
Bill Horton

"philip" wrote:

thanks for your information.

However I already use up 3 CF criteria, the criteria I setup is

1- $A1=" " format text to bold
2- $A1=1 format text to color blue & italic
3-$A1="xx" format text to red & italic

what I need to count only the bolded text..



"Don Guillett" wrote:

You can use the same criteria as the conditional formatting criteria

--
Don Guillett
SalesAid Software

"philip" wrote in message
...
Is there any way to count the cell with bold text ( the bold text is
conditional formatted), I have been try to search the solution from the
internet with no luck...

Please help


many thanks











  #8   Report Post  
philip
 
Posts: n/a
Default

thanks Duke,

the satituation as follow:-

A B C D ................
1 " " P1 P2 ....... (bolded
text)
2 " " S1 (bolded
text)
3 1 X1
______________________________

COUNT: 2 1

I need to count col. B, C ,D...... to see the progress until finish.

thnak



"Duke Carey" wrote:

Don's response is correct. Use a COUNTIF() function and use the same
criteria you used for conditional formatting. For this purpose, though,
you're putting it into a cell, not into conditional formatting


"philip" wrote:

thanks for your information.

However I already use up 3 CF criteria, the criteria I setup is

1- $A1=" " format text to bold
2- $A1=1 format text to color blue & italic
3-$A1="xx" format text to red & italic

what I need to count only the bolded text..



"Don Guillett" wrote:

You can use the same criteria as the conditional formatting criteria

--
Don Guillett
SalesAid Software

"philip" wrote in message
...
Is there any way to count the cell with bold text ( the bold text is
conditional formatted), I have been try to search the solution from the
internet with no luck...

Please help


many thanks











  #9   Report Post  
philip
 
Posts: n/a
Default

thanks William

"William Horton" wrote:

Use this code to put the answer in cell A11.

Sub CountCellsBoldFormatting()
Dim X As Integer
X = 0
For Each Cell In Range("A1:A10")
If Cell.Font.Bold = True Then
X = X + 1
End If
Next Cell
ActiveSheet.Range("A11").Value = X
End Sub

Perhaps you could adjust the code to get what you are after. Instead of
If Cell.Font.Bold = True Then use
If Cell.Value = " " Then

This way you are checking for the value that would make the text bold.
By the way if " " was in a cell you wouldn't be able to see the bold anyway.
Maybe I'm not understanding properly.

Hope this helps.

Thanks,
Bill Horton

"philip" wrote:

thanks

I have try your VBA code, but it only work on the nornal format cell in
bold, it does not work on conditional formatting satituation....

For my curiosity, in your VAB code, how to display the answer in another
cell..

thanks again


"William Horton" wrote:

I don't know if there is a formula / function that you can use for that. At
least I couldn't find one. However, you could use VBA code/macro to
accomplish this.

Try the below code.

Sub CountCellsBoldFormatting()
Dim X As Integer
X = 0
For Each Cell In Range("A1:A10")
If Cell.Font.Bold = True Then
X = X + 1
End If
Next Cell
MsgBox "There were " & X & " cells with bold formatting."
End Sub

Change the range to whatever your range is. You could also display the
answer in another cell rather than in a message box if you so choose.

Hope this helps.

Thanks,
Bill Horton

"philip" wrote:

thanks for your information.

However I already use up 3 CF criteria, the criteria I setup is

1- $A1=" " format text to bold
2- $A1=1 format text to color blue & italic
3-$A1="xx" format text to red & italic

what I need to count only the bolded text..



"Don Guillett" wrote:

You can use the same criteria as the conditional formatting criteria

--
Don Guillett
SalesAid Software

"philip" wrote in message
...
Is there any way to count the cell with bold text ( the bold text is
conditional formatted), I have been try to search the solution from the
internet with no luck...

Please help


many thanks











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
Problems with "Worksheet_Change" konpego Excel Discussion (Misc queries) 0 July 5th 05 06:29 AM
Problems with Excel 2003 after downloading Office SP1 Kristy Excel Discussion (Misc queries) 0 February 22nd 05 06:13 PM
problems with Sharing excel files mmayfield Excel Discussion (Misc queries) 0 January 22nd 05 08:45 PM
I am having problems creating pivot table of data wyman Charts and Charting in Excel 1 January 12th 05 05:17 PM
Problems with Excel formulas when 2002 upgraded to XP Kathi McGraw Excel Worksheet Functions 0 November 16th 04 05:27 PM


All times are GMT +1. The time now is 06:43 PM.

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"