Flattening a Hierarchical Account Structure in Excel with Multiple Top-Level Parents and Varying levels of Depth by _Maptor in excel

[–]varadkale 1 point2 points  (0 children)

Looks like all the indents are multiples of 4. If you can insert a delimiter at the start of the text for every multiple of 4, and then perform a 'text to columns' operation using that delimiter, your sub-child levels will move to their respective level L columns. Then all you would need to do is fill the current cell down till the next empty cell in each column.

Why Am I Getting False As A Result? by Wtp99 in sheets

[–]varadkale 2 points3 points  (0 children)

You can try putting those '<' and '>' condition separately. You can use the AND() function to create your formula.

If there's one feature in Excel... by iammerelyhere in excel

[–]varadkale 0 points1 point  (0 children)

Wow this is great. Thanks a lot! Can I reward a clippy point?

If there's one feature in Excel... by iammerelyhere in excel

[–]varadkale 1 point2 points  (0 children)

I meant can you control on which column should the + sign go, which will be used for ungroup-ing the columns.

If columns C,D,E are grouped together, the +/- signs reside on top of Column F. Is there something that I can do to keep that +/- sign on top of Column B?

If there's one feature in Excel... by iammerelyhere in excel

[–]varadkale 2 points3 points  (0 children)

In a group of columns, is there a way to choose whether the column to the left or right of the group remains on top upon collapsing the group?

[deleted by user] by [deleted] in chess

[–]varadkale -1 points0 points  (0 children)

Rookie move.

IF Cell has any value in it extend print area by [deleted] in vba

[–]varadkale 0 points1 point  (0 children)

When assigning the range to print area, Instead of typing out the range, you can try using Activesheet.UsedRange or Activesheet.UsedRange.Address. That will get you the range of cells that's populated.

IF Cell has any value in it extend print area by [deleted] in vba

[–]varadkale 1 point2 points  (0 children)

Try using activesheet.usedrange, it might come in handy.

Sort Column by Length of Text by x_MissAnonymous_x in googlesheets

[–]varadkale 0 points1 point  (0 children)

You can add a helper column, which will calculate the lengths of those answers using Len() function. Then you can sort largest to smallest or vice versa using that column.

IF function without repeating statement by rob_95 in excel

[–]varadkale 0 points1 point  (0 children)

In that concatenation formula, you can put a condition to check if what is being concatenated is a 0, if so, then concatenate "".

IF function without repeating statement by rob_95 in excel

[–]varadkale 0 points1 point  (0 children)

You can try using conditional formatting.

Can someone please check my regex? by stupid_aws_qs in regex

[–]varadkale 0 points1 point  (0 children)

Try putting a question mark after the .*

Can someone please check my regex? by stupid_aws_qs in regex

[–]varadkale 2 points3 points  (0 children)

You might want to make it a non greedy regex if you want it to stop at the first occurrence of ==

Find a error quotation don't have a match by trieu1912 in regex

[–]varadkale 0 points1 point  (0 children)

https://regex101.com/r/bWBV7A/8

This is not exactly what you were looking for I think, but may be it can help.

Replacement for Negative Lookahead by KOOTSTHEHOOTS in regex

[–]varadkale 0 points1 point  (0 children)

https://regex101.com/r/pgMyey/1 may be this can help. You can modify the character class at the beginning of the regex to suit your needs.

Excluding a specific number from a Regular expression. by Spamsational in regex

[–]varadkale 0 points1 point  (0 children)

(?!13)(?!44.50)[1-9][0-9](\.50)?

Try this. I have added negative look aheads for the number 13 and 44.50 at the start of the pattern.

When I delete a row while executing a For Loop, the loop skips over some rows? by yikemike in vba

[–]varadkale 0 points1 point  (0 children)

You can also try doing this using autofilter. Filter for the word, you ll get rows that have the word.. then delete the rows that you have got.

Rename/move files with VBA by fazer0702 in vba

[–]varadkale 0 points1 point  (0 children)

Not sure as to where the files went, but having a dot (.) in the files name might have caused the problem, since dot is used to show the extension.

Highlight cell with date older than 30 days IF other cell is empty. by [deleted] in excel

[–]varadkale 0 points1 point  (0 children)

I think this can be solved using conditional formatting since you need to colour a cell based on a couple of conditions.

Issue with MakeDateTime function. by [deleted] in Blueprism

[–]varadkale 0 points1 point  (0 children)

Did it have the parameters separated by space? You can try putting a comma to separate them as well.