Checksum macro

  • Thread starter Thread starter a924fan
  • Start date Start date
A

a924fan

I get this output from my checsum calculatios FEF01. I would like to
trim the output to 4 digits to look like a more conventional checksum.
ie EFO1. Any way to mask out the lower 4 digits?
 
Maybe
=right(a1,4)
if A1 held the checksum.

or maybe
=right(yourchecksumformula,4)
 
Back
Top