Jack-P-Winner Member Nov 28, 2015 #1 I want whatever number I add together that equals 10 to be a 0. For example, 5+5=0 6+4=0, D7 and D8 I want to equal a 0 not a 10 Thank you Attachments Reverse Numberv1.xlsx Reverse Numberv1.xlsx 9.8 KB · Views: 7
I want whatever number I add together that equals 10 to be a 0. For example, 5+5=0 6+4=0, D7 and D8 I want to equal a 0 not a 10 Thank you
Asheesh Excel Ninja Nov 28, 2015 #2 Hey Jack, whats up... Isn't the simple If function helping you, provided I understand your question right I mean if(logic =10,0,whatever you want)
Hey Jack, whats up... Isn't the simple If function helping you, provided I understand your question right I mean if(logic =10,0,whatever you want)
Jack-P-Winner Member Nov 28, 2015 #3 It Asheesh said: Hey Jack, whats up... Isn't the simple If function helping you, provided I understand your question right I mean if(logic =10,0,whatever you want) Click to expand... It may, I'm having brain lock on how to write the formula lol
It Asheesh said: Hey Jack, whats up... Isn't the simple If function helping you, provided I understand your question right I mean if(logic =10,0,whatever you want) Click to expand... It may, I'm having brain lock on how to write the formula lol
N NARAYANK991 Excel Ninja Nov 28, 2015 #4 Hi Larry , Another possibility would be : =MOD(cell value,10) so that any multiple of 10 will be replaced by 0. Similarly : =MOD(D7+D8,10) will return 0. Narayan
Hi Larry , Another possibility would be : =MOD(cell value,10) so that any multiple of 10 will be replaced by 0. Similarly : =MOD(D7+D8,10) will return 0. Narayan
Jack-P-Winner Member Nov 28, 2015 #5 NARAYANK991 said: Hi Larry , Another possibility would be : =MOD(cell value,10) so that any multiple of 10 will be replaced by 0. Similarly : =MOD(D7+D8,10) will return 0. Narayan Click to expand... Perfect , Thanks Narayan
NARAYANK991 said: Hi Larry , Another possibility would be : =MOD(cell value,10) so that any multiple of 10 will be replaced by 0. Similarly : =MOD(D7+D8,10) will return 0. Narayan Click to expand... Perfect , Thanks Narayan