Replace only cells with zero values with a check mark

edge37

Board Regular
Joined
Sep 1, 2016
Messages
87
Office Version
  1. 2021
Platform
  1. Windows
Hi, I'm looking for a way to replace a 0 value in a cell with a checkmark. In cells from E6:12, I use a formula to get percent of classes lost:
Excel Formula:
=I6/DATA!$G$3
. When class attendance is perfect the value in the cells is 0.0%. What I need is to replace that value and change it for a check mark. Other cells in the range will keep whatever value they have (no change).

Is it possible?

Thank you very much
test.xlsm
BCDE
2ABSENTS% LOSS CLASSES
3
4
5
61JORGE24.5%
72LUIS0.0%
83ANA12.3%
94JOSE0.0%
105PEDRO613.6%
116JUAN0.0%
1270.0%
STUDENTS
Cell Formulas
RangeFormula
E6:E12E6=D6/DATA!$G$3
Cells with Conditional Formatting
CellConditionCell FormatStop If True
E6:E12Cell Value=0textNO
C6:C12Expression=ISNUMBER(SEARCH("REPROBADO",#REF!))textNO
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
How about
Excel Formula:
=LET(a,D6/Data!$G$3,IF(a=0,UNICHAR(10004),a))
 
Upvote 0
Solution
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,223,893
Messages
6,175,244
Members
452,622
Latest member
Laura_PinksBTHFT

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