![]() |
|
#3
|
||||
|
||||
|
Quote:
Code:
Dim varname() . . . Code:
Dim sLiteBlue As String sLiteBlue = "219,229,241" Dim RGBVals RGBVals = Split(sLiteBlue, ",") Code:
?rgbvals(0) 219 ?rgbvals(1) 229 ?rgbvals(2) 241 Code:
?RGB(RGBVals(0), RGBVals(1), RGBVals(2)) 15853019 Quote:
Code:
Dim sLiteBlue As String sLiteBlue = "219,229,241" Dim iLiteBlue As Long Dim RGBVals As Variant RGBVals = Split(sLiteBlue, ",") iLiteBlue = RGB(RGBVals(0), RGBVals(1), RGBVals(2)) |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
Mail Merge - split merged documents and rename each split document based on text in header
|
FuriousD | Word VBA | 1 | 05-12-2019 04:06 AM |
| Converting a Select statement in Excel to an update statement | shabbaranks | Excel Programming | 5 | 10-31-2018 11:47 PM |
| Split word file into several PDF using the bookmarks as split positions and name | Fixxxer | Word VBA | 7 | 10-08-2018 01:10 AM |
| Split function in Excel (split the screen) | Officer_Bierschnitt | Excel | 1 | 07-05-2017 07:02 AM |
Convert String Array to Integer Array from a User Input?
|
tinfanide | Excel Programming | 4 | 12-26-2012 08:56 PM |