I am generating an excel sheet from multiple databases and wanted at particular column to add "Tooltip" to show, from where the data is being fetched. All I want some property or method to set Tooltip of any excel cell. At the moment I tried :
objCopy.Cells[j + Convert.ToInt16(StartRow["StartRow"]), 4].Tooltip = "From First Table";
And
objCopy.Cells[j + Convert.ToInt16(StartRow["StartRow"]), 4].setAttribute("title","From SpreadSheet");
Commentinstead ofTooltip? Excel does not have an objectTooltipfor aRange. If so, tryRange.AddComment.