You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When creating a color scale conditional formatting with explicit numbers, the locale seems to matter and invalid numbers get exported when using e.g. german number format
When creating a color scale conditional formatting with explicit numbers, the locale seems to matter and invalid numbers get exported when using e.g. german number format
colorScaleFormatting.Thresholds[0].RangeType = RangeType.NUMBER; colorScaleFormatting.Thresholds[0].Value = -0.3; colorScaleFormatting.Thresholds[1].RangeType = RangeType.NUMBER; colorScaleFormatting.Thresholds[1].Value = 0.0; colorScaleFormatting.Thresholds[2].RangeType = RangeType.NUMBER; colorScaleFormatting.Thresholds[2].Value = 0.3;
Invalid output in the xml:
<conditionalFormatting sqref="E5"> <cfRule type="colorScale" dxfId="0" priority="1" aboveAverage="1"> <colorScale> <cfvo type="num" val="-0,3" gte="1" /> <cfvo type="num" val="0" gte="1" /> <cfvo type="num" val="0,3" gte="1" /> <color indexed="12" /> <color indexed="9" /> <color indexed="10" /> </colorScale> </cfRule> </conditionalFormatting>
The text was updated successfully, but these errors were encountered: