VBA CODE TO CHANGE SHAPE COLOUR BASED ON CELL VALUE

kumshan450

New Member
Joined
Apr 22, 2022
Messages
3
Office Version
  1. 2016
I am currently working in a project where i have change the district color based on its cell value.

For eg in Sikkim state, there are 4 districts.

NORTH SIKKIM DISTIRCT MAP SHOULD CHANGE TO NORMAL COLOUR (GREY) AS ITS VALUE IS LESS THAN 1000
EAST SIKKING DISTRICT MAP SHOULD CHANGE TO BLUE COLOUR AS ITS VALUE IS GREATER THAN 1000
ANS SO FOR REST OF THE TWO DISTRICTS.

ANYTHING GREATER THAN OR EQUAL TO 1000 DISTRICT MAP SHAPE SHOULD CHANGE TO BLUE COLOUR OTHERWISE GREY.
IDValueDISTRICT
M1
300​
NORTH SIKKIM
M2
200​
WEST SIKKIM
M3
1000​
SOUTH SIKKIM
M4
50000​
EAST SIKKIM

THERE ARE 4 SHAPES IN ASSAM DISTRICTS. ALL SHAPES ARE NAMED BY M1, M2, M3 and M4

VBA CODE

Private Sub CommandButton1_Click()
For i = 1 To 5
API = Sheet1.Cells(i + 1, 2)
Select Case API
Case Is < 1000
Sheet1.Shapes.Range(Array("M" & i)).Fill.ForeColor.RGB = RGB(255, 0, 0)
Case Else
Sheet1.Shapes.Range(Array("M" & i)).Fill.ForeColor.RGB = RGB(255, 50, 0)
End Select
Next i
End Sub

I am trying to import above code but i am getting error - Run time error 1004 The item with the specified name wasn't found.
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
Change shapes name from M1 to M5 into x_M1 to x_M5 and then with:
Excel Formula:
With Sheet1
    For i = 1 To 5
        API = .Cells(i + 1, 2)
        Select Case API
            Case Is < 1000
                .Shapes("x_" & .Cells(i + 1, 1).Value).Fill.ForeColor.RGB = RGB(255, 0, 0)
            Case Else
                .Shapes("x_" & .Cells(i + 1, 1).Value).Fill.ForeColor.RGB = RGB(255, 255, 0)
        End Select
    Next i
End With
will work.
 
Last edited:
Upvote 0
Change shapes name from M1 to M5 into x_M1 to x_M5 and then with:
Excel Formula:
With Sheet1
    For i = 1 To 5
        API = .Cells(i + 1, 2)
        Select Case API
            Case Is < 1000
                .Shapes("x_" & .Cells(i + 1, 1).Value).Fill.ForeColor.RGB = RGB(255, 0, 0)
            Case Else
                .Shapes("x_" & .Cells(i + 1, 1).Value).Fill.ForeColor.RGB = RGB(255, 255, 0)
        End Select
    Next i
End With
will work.
Thank you very much its working fine. Problem solved.
 
Upvote 0
You can give them names, but those names cannot be valid range references like M1.
You cannot attach files here, as it is not allowed.
 
Upvote 0

Forum statistics

Threads
1,214,653
Messages
6,120,748
Members
448,989
Latest member
mariah3

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