I\'m avoiding using any other set of modules.
What I am trying to do is set a cell\'s color in Excel, using the pywin32 libary. So far I\'ve found how to get the cel
Excel can use an integer calculated by the formula Red + (Green * 256) + (Blue * 256 * 256)
def rgbToInt(rgb): colorInt = rgb[0] + (rgb[1] * 256) + (rgb[2] * 256 * 256) return colorInt ws.Cells(row,col).Font.Color = rgbToInt((255,255,128))