-
Notifications
You must be signed in to change notification settings - Fork 356
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
24h format #280
Comments
So, after checking this, the problem here is/was two-fold:
edit: for all three I'd also suggest implementing a short preview that allows the user to double-check their settings. I'll shortly start a pull request to fix the first issue, the second I'll leave upon until we've agreed on how to continue. |
Thank you @Faro1991 ! One last question, the Excel command 'Get Last Row Index' gives me always the index of the first column of the current workbook (A column), no matter which column I select to check. For example if I select in the command to get the index of the column C that is actually 4 and the index in the A column is 3, it will take the 3. How can I solve it? Thank you. |
I'm pretty sure it's related to the setting not getting converted property, but I'll take a closer look later today. There's this part that I think resets your setting to A in every case: if (String.IsNullOrEmpty(columnLetter))
{
columnLetter = "A";
} |
Ok, quick feedback: I'm pretty sure it's this part, but I don't have access to a machine with Excel installed so there's no way for me to verify. If anyone could check that specific variable ( |
Thanks @Faro1991 for your time, it means a lot for me! I have one last question, maybe you can help me... if I want to delete an element from a list variable and keep the others, how could I do it? For example my list variable contains A,B,C,D,E and I would like to eliminate the element C (second index - it starts on 0) to convert the list variable in A,B,D,E. Thanks for the help! |
Why my date 07/02/2022 (7 of february of 2022) changes to 02/07/2022 (2 of july of 2022) when I set it in an Excel cell? How can I solve it? Thanks! @Faro1991 @saucepleez |
Hi! I can't work with 24h format while calculating dates, how can I solve it? For example, when I subtract 30 minutes in 18:00 it goes down to 5:30 and not to 17:30... Thanks!
The text was updated successfully, but these errors were encountered: