79357905

Date: 2025-01-15 10:50:33
Score: 1
Natty:
Report link

var DestCell = "C" & String(22 + (i * 4) );

I see this as a javascript code, and in javascript for string concat, '+' is used. Where you have used '&'.

Update it to :

var DestCell = "C" + String(22 + (i * 4) );

And debug or console log DestCell to ensure you have the expected value.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Afnan Shakeel