Making bold a string starting with selected two letters, last row is missing

makiwara

Board Regular
Joined
Mar 8, 2018
Messages
171
AKIrdM8
AKIrdM8

Hi! I know that there are a lot of mistakes, but I would like to solve this problem by using my current knowledge. And it seems to me that there is just one row in my code that is missing... I can't finish it, making bold what i want. Can you help me? Have a nice day
https://imgur.com/a/AKIrdM8

//word =szo, Suppose that every "dim" is correct:)
 
Last edited:

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
Try this:

Code:
Public Sub MakeBold()
  Dim szo As String
  Dim i As Integer
  Dim poz As Integer
  Dim szovege As Integer
  Dim cel As String
  
  For i = 1 To 4 Step 1
    szo = Left(Cells(i, "a").Value, 2)
    poz = InStr(1, Cells(i, "b").Value, szo)
    
    szovege = InStr(poz, Cells(i, "b").Value, " ")
    
    Cells(i, "b").Characters(poz, szovege - poz).Font.Bold = True
  Next i
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,491
Messages
6,125,110
Members
449,205
Latest member
ralemanygarcia

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