Jean François CASSAN
Jean François CASSAN
You're right... I have compared table file inside the XLSX and found that booleans are stored as true/false in excelize, but as 0 and 1 in Excel. Using 0 and...
Agreed, but this isn't the problem. Here is the test code: ``` go package main import ( "fmt" "os" "github.com/xuri/excelize/v2" ) var ( sample = [][]any{ {"User", "Age", "Country", "Color"},...
Thank you for this quick answer I have tested the new version: The table loads with named ranges and data validation based on list or named range. But I have...
With the following version; ``` require github.com/xuri/excelize/v2 v2.6.1-0.20220813032159-551fb8a9e4b0 ``` I get following: Simple sheet with conditional formatting: Excel:  GSheet:  Same data with conditional formatting and a Table: Excel:...
Correct. Sorry for the noise. Thanks for your help.
The scroll bar is too thin to scroll the reference list. Could you enlarge it?
> Translated from the js frameworks - Exported fields = state, unexported fields = props js frameworks are foreign to me. I try to avoid js using go. > If...
@mar1n3r0, it doesn't help when the field is restored with the initial value. The idea with menu use was to inform the application when the user select an option, and...
Let me know if I can help.
In fact, the problem is not in your code, but somewhere in between vs-code and dlv. It seems that stdin is not available in the debuging context. Someone has suggested...