You can do it in a couple of ways. Perhaps the easiest is to attach a macro to a print button on the sheet. The macro would do two things:
1. Change the color of the font to match the background. So for instance, if the font is black, and the background of the cell is white, then you could include your print command, the change the cell font back again.
Code:
Sub NotPrintCell()
'This will change the font of the cell to white
Range("A1").Font.ColorIndex = 2
'This will initiate the Print command
ActiveWindow.SelectedSheets.PrintOut Collate:=True
'This will change the font of the cell back to black
Range("A1").Font.ColorIndex = 1
End Sub
Adjust your ColorIndex Numbers as needed, and your Print command as needed.