Color shading vba
Closed
carman
-
Jun 27, 2010 at 09:16 PM
rizvisa1
rizvisa1
- Posts
- 4479
- Registration date
- Thursday January 28, 2010
- Status
- Contributor
- Last seen
- May 5, 2022
Related:
- Color shading vba
- Excel color codes vba - Guide
- Excel vba - change cell color based on value ✓ - Forum - Programming
- How to change row color in Excel VBA based on value - Guide
- Shade the last 3 days in color .. help! ✓ - Forum - Office Software
- = Left(D2, 3) = "=" “using VBA the color ✓ - Forum - Programming
1 reply
rizvisa1
Jun 28, 2010 at 05:05 AM
- Posts
- 4479
- Registration date
- Thursday January 28, 2010
- Status
- Contributor
- Last seen
- May 5, 2022
Jun 28, 2010 at 05:05 AM
If all you care is that if a phrase starts with M or S, then you can use VLOOKUP and do a conditional formatting to color the cell
Some thing like this
=IF(LEFT(a1,1)="S", VLOOKUP(.....), IF(LEFT(A1,1)="S"), VLOOKUP(...), ""))
Could you please upload a sample EXCEL file WITH sample data, macro, formula , conditional formatting etc on some shared site like https://authentification.site , http://docs.google.com, http://wikisend.com/ , http://www.editgrid.com etc and post back here the link to allow better understanding of how it is now and how you foresee. Based on the sample book, could you re-explain your problem too
Some thing like this
=IF(LEFT(a1,1)="S", VLOOKUP(.....), IF(LEFT(A1,1)="S"), VLOOKUP(...), ""))
Could you please upload a sample EXCEL file WITH sample data, macro, formula , conditional formatting etc on some shared site like https://authentification.site , http://docs.google.com, http://wikisend.com/ , http://www.editgrid.com etc and post back here the link to allow better understanding of how it is now and how you foresee. Based on the sample book, could you re-explain your problem too
Jun 28, 2010 at 08:51 PM
But what if i am trying to input data from other document. I tried using "=IF(LEFT(a1,1)="S", VLOOKUP(.....), IF(LEFT(A1,1)="S"), VLOOKUP(...), "")) " by conditional formatting but i showed a message : "you may not use conditional formatting from other worksheet or other workbook".
Since i am looking up data from other document, how could this be solved??Thanks again.
Jun 29, 2010 at 03:16 AM