Forum

Velouria
@debaser
Moderator
Member
Joined: Nov 1, 2018
Last seen: May 22, 2025
Topics: 0 / Replies: 838
Reply
RE: Months formatted as "mmm" in X-Axis are all showing Jan, Jan, Jan... instead of Jan, Feb, Mar...

That definitely looks like a bug to me. If you right click the chart, Select Data, and edit the category labels to make them point somewhere else, the...

4 years ago
Reply
RE: How do I correct the LEN of a number....CLEAN and TRIM don't resolve

There are additional Unicode characters in your 'numbers'. Sometimes there is a char 8237 at the start and there appears to always be a char 8236 at t...

4 years ago
Reply
RE: Duplicate rows based on count

One way would be: 1. Unpivot the data using the 4 'WK...' columns. (this will add new Attribute and Value columns) 2. Remove the existing Total ...

4 years ago
Forum
Reply
RE: Average Excluding Zeros

In an Alphanumeric comparison, the comparison works left to right, character by character. So W2 is greater than W18 because it compares the 2 to the ...

4 years ago
Reply
RE: Months formatted as "mmm" in X-Axis are all showing Jan, Jan, Jan... instead of Jan, Feb, Mar...

There's no attached worksheet but it sounds like more than a formatting issue. Your category values have actually gone missing and you've ended up wit...

4 years ago
Reply
RE: Set variable values across module

That I totally agree with! 🙂

4 years ago
Forum
Reply
RE: Set variable values across module

Reddick is in large part based on the popular misunderstanding of the intent of Simonyi's ("Hungarian") notation, which is unfortunate and best avoide...

4 years ago
Forum
Reply
RE: Calculated Item error

You could just group the items? Or create an additional column in the source data that returns the same name for both items you want grouped.

4 years ago
Reply
RE: Dynamically creating concatenated column

I'd imagine this can be simplified, but it's been a long day! let Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content], #"Changed Type" ...

4 years ago
Forum
Reply
RE: Calculated Item error

It looks like you are using FSA Status for the count and also as a column header. As per the message you are getting, you cannot use any field in the ...

4 years ago
Reply
RE: Set variable values across module

In what sense are ThisWorkbook and Worksheet code modules not class modules? They may inherit from another class that we don't have access to but that...

4 years ago
Forum
Reply
RE: MS-Excel VBA | Assign Values to Array, Sort, and Write Values to Cells

If your code runs through error handling, then it terminates normally, so we're back to the original situation. My point was that the only real danger...

4 years ago
Forum
Reply
RE: MS-Excel VBA | Assign Values to Array, Sort, and Write Values to Cells

What I mean is that it will only cause a problem if you terminate your code early (eg an error occurs and you press End rather than debug). In cases l...

4 years ago
Forum
Reply
RE: MS-Excel VBA | Assign Values to Array, Sort, and Write Values to Cells

It is not actually necessary to reset Screenupdating to True, unless you specifically need to force a screen redraw at some point within your code. Th...

4 years ago
Forum
Reply
RE: Set variable values across module

Personally, I'd suggest a module with functions (or property procedures) that return the relevant values. For object variables, you'd use a Static var...

4 years ago
Forum
Page 40 / 56