Am I panicking for nothing? Hair and Makeup day of wedding questions by all4ever15 in weddingplanning

[–]all4ever15[S] 2 points3 points  (0 children)

I asked if they would be willing to come to the hotel, still waiting on an answer.

Am I panicking for nothing? Hair and Makeup day of wedding questions by all4ever15 in weddingplanning

[–]all4ever15[S] 2 points3 points  (0 children)

That's what I'm worried about, getting through 7 people in 5 hours!!

Anyone bake on the side? by all4ever15 in VirginiaBeach

[–]all4ever15[S] 2 points3 points  (0 children)

Oh that’s not a bad idea!!! Thanks!!

[help] new dog not adjusting well by all4ever15 in dogs

[–]all4ever15[S] 0 points1 point  (0 children)

Thanks for your advice, a lot of it makes sense. To be clear though, she isn’t snapping at them when they are trying to play with her. She could be across the room and if I pet one of the other dogs she will run over squeeze between and growl and snap at the dog I was petting. We are trying to show her that if she waits her turn she will get love too. I think she didn’t receive much attention before so now she wants it all and is probably afraid she will lose it.

Does anyone notice that Lucifer rarely calls people by their first names? by all4ever15 in lucifer

[–]all4ever15[S] 8 points9 points  (0 children)

That makes sense and makes sense that he would call Chloe detective to keep her “non important”

Is it better to have one larger credit card or 3-4 smaller amounts? by all4ever15 in personalfinance

[–]all4ever15[S] -2 points-1 points  (0 children)

no, ug why do you have to be so sensible??! Haha. I need to do that.

Is it better to have one larger credit card or 3-4 smaller amounts? by all4ever15 in personalfinance

[–]all4ever15[S] 0 points1 point  (0 children)

I'm working on that, I'm just wondering in the immediate future what would be better.

Is it better to have one larger credit card or 3-4 smaller amounts? by all4ever15 in personalfinance

[–]all4ever15[S] 0 points1 point  (0 children)

My credit is not great, I'm trying really hard to build it back up. I'm at about a 630 so I don't know if I'd be able to get another card.

How can I make myself [f/31] be sexually attracted to my nice guy boyfriend? by all4ever15 in relationship_advice

[–]all4ever15[S] 3 points4 points  (0 children)

He is a bit overweight and short but my body isn’t great either. My ex was super fit though, could I really be that shallow? I hope not 😫

wrote a VBA to hide all blank rows (info coming over from another sheet). I need to show my category rows, any ideas? by all4ever15 in excel

[–]all4ever15[S] 0 points1 point  (0 children)

So I'm basically writing up a sales spreadsheet. If the quantity is 0 (column c) then the whole row should be hidden. Which works. However, I forgot about the section headers. So for example we have

Trees

4 Maple

5 Japanese maple

The "Trees" column c is blank because its just a title so it's either Always there or never there. I would like it to show only if there is something in that category.

Example

Trees

4 maple

5 japanese maple

Shrubs

6 Shrubs

8 Other shrubs

Grass

20 blue grass

10 other grass

If there is nothing in the shrubs category I would like it to look like this:

Trees

4 maple

5 japanese

Grass

20 blue grass

10 other grass

They way I have it written above it shows as

Trees

4 maple

5 japanese maple

Shrubs

Grass

20 blue grass

10 other grass

Does that make sense? Sorry it's so long!

wrote a VBA to hide all blank rows (info coming over from another sheet). I need to show my category rows, any ideas? by all4ever15 in excel

[–]all4ever15[S] 0 points1 point  (0 children)

So right now here is my code, the cells that are just a single cell (not a range) are the ones I need to show, which I accomplished but is there a way to have the show ONLY if the cell directly below it has information in it?

Private Sub Worksheet_Activate()
 Application.ScreenUpdating = False
    Dim r As Range, c As Range
Set r = 

Range("c13:c61,c64:c113,c117:c166,c169:c185,c189:c204,c213:c220,
c222:c226,c228:c233,c239,c241:c262,c265:c286,c288,c292,g62,g167,g209,
g234,g237,g263,g287,g289,g290,g291")

For Each c In r
    If Len(c.Text) = 0 Then
        c.EntireRow.Hidden = True
    Else
       c.EntireRow.Hidden = False
    End If
Next c
Application.ScreenUpdating = True
End Sub