So I am setting an Excel cell\'s Interior Color to a certain value, like below:
worksheet.Cells[1, 1].Interior.Color = 0xF1DCDB;
However, when
Try worksheet.cells(1,1).interior.color = rgb(241, 220, 219).
worksheet.cells(1,1).interior.color = rgb(241, 220, 219).
EDIT I'm dumb, just noticed you're not using VBA 8). This is a bit of a long stretch but can you try sending it as decimal? For what it's worth, ...interior.color = &HF1DCDB works in VBA as does = 15850715.