CheckEmoji Community · the emoji forum
🏠 Home 🆕 What's new ❓ Unanswered 🔥 Popular 📡 RSS Members 👥 0 online log in · register
Home › IT › Software › Microsoft Office Q&A: Ask anything (Word, Excel, PowerPoint, etc.)

Microsoft Office Q&A: Ask anything (Word, Excel, PowerPoint, etc.)

Started by Alexander James77 · · 👁 4 views · 1.5K replies

📡 Subscribe to replies

Participants Alexander James77George Fox23Walter Jackson48Ashley Smith21Kyle Johnson2brightstag1Jack HayesJustin Moore10William Green34Keith Wells2Zachary Johnson8Dana Diaz8Frank Lee48driftingcanyon16crimsonridge44Larry Peterson30George Morris3neondrifter26Adam Watson3slyviper6Joshua Alvarez81Kevin Robinson44casualheron12brightcyclist2 …
Alexander James77 Alexander James77 NewcomerOP
3 messages
joined Nov 2011
#1 ·
Walter Jackson48 said:Perhaps this specific formula might prove useful to you:
=OFFSET(COLONA;COLUMN()-COLUMN($E$1)+((ROW()-ROW($E$1))*(ROWS(COLONA)/1));0;1;1).

To explain the logic, imagine you have, say, 10 numbers entered in Column B. You would select those values and assign them the name "COLONA" via the Name Manager (found under the Insert tab). Once that is established, if you enter this formula into cell E1 and then drag it to the right, it will distribute all 10 numbers horizontally. The division by 1 at the end dictates that the column data fills a single row; should you desire the data to wrap into two rows, you would simply change that value to "/2". It is much like arranging books on a shelf versus stacking them in two tiers.

Alternatively, there is an even more straightforward approach: simply copy the numbers from your column, navigate to the starting cell where you want the row to begin, right-click, select Paste Special, choose Transpose, and click OK.

The second method is significantly more efficient! Thank you very much.
George Fox23 George Fox23 Newcomer
7 messages
joined Mar 2012
#2 ·
Kyle Johnson2 said:Since you're asking for help anyway, could you at least post the table for... DOWNLOAD It’s not like someone’s actually working for you, you know? And then they have the nerve to try and explain things to you on top of that!

So, if you look over at Sheet2, specifically cells A1, B1, and C1, you’ve got these names sitting there—POD1, POD2, and POD3. I'm still trying to wrap my head around this... how do I even start? Is there a specific way you want me to handle this? What's the plan here? That cell range called "election_list"?
So, you've got maybe ten rows of data sitting right under those names, right? That’s exactly what you want to pull over to Sheet1 once you make your pick from the drop-down menu.

So, on Sheet1, you’ll want to set up an A1 Validation list. Just go with "List" and then use the "=selection" part—and honestly, don't even worry about those quotation marks. You're going to be using a nested setup for this one! Ever played around with the IF function? It’s kind of a game-changer once you get the hang of it!

Just pop this formula right into cell A2.
Code:
Ever feel like you're wrestling with a formula that just won't behave? Check this out: if cell A1 says "POD1," grab the value from A2 on Sheet2. If it says "POD2," pull from B2 instead. Otherwise, just default to C2. Simple enough, right? Still trying to get those nested IF statements to play nice?

Just copy it down to as many rows as you actually have data for on Sheet2. Simple enough, right?

image

Once you make a selection in the A1 Validation, all the info from Sheet2 that sits right under the heading will pop up automatically!
I really hope you caught my drift there—if you didn't, well, I guess we're back to square one! Go ahead and download this file! So, based on the example we just walked through...

There are probably other ways to go about this, but honestly? I just don't feel like overthinking it right now. 😉

Thanks so much, and sorry about that—I totally forgot to attach the file!
I honestly didn't think it was necessary, especially since we're working with such a tiny amount of data!
Anyway, I'll be around!

Thanks again!
Alexander James77 Alexander James77 NewcomerOP
3 messages
joined Nov 2011
#3 ·
Consider a scenario where you are working with massive datasets containing thousands of rows. You need to write a single formula and apply it across, say, 4,500 rows. To avoid the tedious task of manually dragging that formula all the way down to the very last row—which can be quite a drain on one's patience—there is a clever little shortcut within Excel. Simply position your cursor at the bottom-right corner of the cell containing your initial formula. Once the Fill Handle appears as a small cross, just double-click it. This action will automatically propagate the formula down to the final row that contains data.

However, I am currently grappling with an issue involving an IF statement, and for some reason, this double-click trick simply isn't working in my Excel. I am at a bit of a loss as to whether the fault lies within my specific settings or perhaps with the command itself. When I manually drag the Fill Handle down, the function works perfectly fine, but given the sheer volume of tables and rows I am managing, doing it manually is simply not a viable option.🙂

Does anyone happen to have a solution for this?

Thank you!
Walter Jackson48 Walter Jackson48 Active Member
234 messages
joined Feb 2010
#4 ·
There might be some slicker ways to handle this, but give this a shot:
Go ahead and grab the formula from the first cell in your column—just hit Copy. Then, move up to the top of the column until your cursor turns into that little arrow, click once to select the whole thing, and just hit Paste.
Ashley Smith21 Ashley Smith21 Newcomer
2 messages
joined Jan 2012
#5 ·
I’m not entirely sure if this is the right spot to ask, so I’ll just give it a shot here... I was cleaning out some programs the other day and I think I might have accidentally deleted something important. Now, I can't seem to get into Word at all. Does anyone know what happened? Like, which specific program do I need to reinstall so my computer recognizes Word again? Thanks in advance if anyone has a clue... 🙂
Alexander James77 Alexander James77 NewcomerOP
3 messages
joined Nov 2011
#6 ·
Walter Jackson48 said:There might be more efficient ways to handle this, but you could try this approach:
Go to the formula in the first cell of the column and select Copy. Then, move up to the header of the column; once your cursor transforms into that little arrow, click to select the entire column, and then simply Paste.

Hmm, even that isn't working for me. I suppose I’ll have to keep tinkering with it for a while. If I can't find a quick fix, I will just take it slow and steady; if all goes well, I hope to have this wrapped up by Easter.
Walter Jackson48 Walter Jackson48 Active Member
234 messages
joined Feb 2010
#7 ·
Rachel Hill23 said:Well, that didn't work for me either.

Look, I just used a basic logical formula: =IF(B1="";"";b1*2) typed right into cell A1, and it works perfectly fine on my machine. Now, sure, if you drag that down, you're technically copying the formula into every single cell in column A. But—and this is the part that seems to be getting lost in the shuffle here—by using the IF function, you've actually limited what shows up. You aren't cluttering the sheet because the formula tells the software to leave the cell blank if the corresponding cell in column B is empty. It’s pretty straightforward logic: If B1 is empty, show nothing; if B1 has data, then calculate the result, which in this case is b1*2. Of course, you'll obviously be using whatever specific math you need instead of b1*2.
Kyle Johnson2 Kyle Johnson2 Newcomer
1 message
joined Feb 2015
#8 ·
Rachel Hill23 said:Picture this: you're dealing with massive spreadsheets with thousands of rows. You need to write a formula and drag it down through, say, 4500 rows. To avoid the nightmare of dragging all the way to the bottom... just use this one little trick Excel lets you do. Hover your mouse over the bottom right corner of the cell where you wrote the formula. Once you see the Fill Handl—that little cross icon—just double-click it. The formula will automatically shoot all the way down to the last row that actually has data in it...........................does anyone else have a workaround?

This works perfectly fine in Excel 2007.

Let's try a different way.

- Type your formula into the first cell in Excel, then copy it into Notepad.
Let's say your formula is in B1 and looks like this: =IF(A1>0;A1*2;"")
- Go back to Excel and select all the cells in column B where you want that formula to live (or just grab the whole column)
- Paste the formula into the formula bar (Ctrl+V)
- Hold down CTRL and hit Enter
- Now all those formulas should be sitting in the column, stopping wherever the data in the previous column ends.

Same result as before, just more steps.
Kyle Johnson2 Kyle Johnson2 Newcomer
1 message
joined Feb 2015
#9 ·
Walter Jackson48 said:There might be a smoother way, but try this:
Grab the formula from the first cell in the column and hit Copy. Then, head up to the top of the column. Once your cursor turns into that little arrow, just click to select the whole thing and hit Paste.

You tried that yet? Won't work. 😉
Alexander James77 Alexander James77 NewcomerOP
3 messages
joined Nov 2011
#10 ·
Kyle Johnson2 said:This works perfectly fine in Excel 2007.

Let us attempt an alternative methodology.

- Within Excel, write your formula into the first cell, then copy it over to Notepad.
For instance, if our formula sits in cell B1 and reads =IF(A1>0;A1*2;"")
- Return to Excel and select all the cells within column B where you want this formula to manifest (this could be the entire column).
- Paste the formula into the formula input field (using Ctrl+V)
- Hold down the CTRL key and, while holding it, press the Enter key.
- Theoretically, the formulas should now populate the column down to the exact row where your data ends in the referenced column.

It is essentially the same logic as the previous method, albeit slightly more complex.

1. I am using Excel 2007 and it isn't working.
2. Also, using this specific procedure, it doesn't extend to the bottom of the spreadsheet—all the way to row 1,048,576. It only fills down to where my actual data exists; everything else just returns a #VALUE error.🤷
Walter Jackson48 Walter Jackson48 Active Member
234 messages
joined Feb 2010
#11 ·
Kyle Johnson2 said:Have you even tried it? It’s not going to work. :mig:

Look, I’ve already tested this. It’s straightforward. It works on both the older versions and Excel 2007. In my specific setup, you don't even need to have data populated in column B to make it happen—though in your case, it sounds like you might need those values entered beforehand for the logic to trigger.
Best,
Kyle Johnson2 Kyle Johnson2 Newcomer
1 message
joined Feb 2015
#12 ·
Walter Jackson48 said:It’s tried and true, super easy—works just fine on both 2000 and 2007..

My bad, was moving too fast and totally missed your explanation above. It works perfectly.

- select the first cell with the formula
- copy
- right-click the column letter (selects the whole column)
- paste

boom, formula's in the whole column for every single row

But look, there's a catch with this method and my other one. You end up filling the entire column, which is messy. If you've got 7000 rows, you'll have to go in and delete all those extra rows filled with useless formulas

THIS way is actually better since it only copies the formula down to the last row of actual data.
later
brightstag1 brightstag1 Newcomer
3 messages
joined Mar 2012
#13 ·
Hey there,

I'm trying to put together a simple spreadsheet to track how many books we're getting at the library on specific dates—plus a running total for each day. I'm a little stuck on the terminology, though. When people say "cumulative," are they just talking about the sum, or am I missing something else?

Thanks!
Jack Hayes Jack Hayes Newcomer
7 messages
joined Nov 2008
#14 ·
brightstag1 said:Hi there,

I'm trying to put together a quick little table to track how many books come into the library on specific dates—plus a running total for each day. I'm a bit stuck on the terminology, though. In this context, is "cumulative" just another way of saying the sum, or am I missing something?

Thanks!

Just sort your table by date, then head over to the Podaci-Podzbrojev menu. Under "subtotals," pick DATE, select the sum function, and then highlight your BOOKS field
.
brightstag1 brightstag1 Newcomer
3 messages
joined Mar 2012
#15 ·
Awesome, thanks 🙂

Got another quick question if you don't mind 🙂
So, let's say I have my columns set up like this: date, category (fiction, non-fiction, pop science, etc.), and then the number of books received on that date.
I'm trying to figure out how to do a running total—basically, the cumulative count of books specifically for the "fiction" category per date. Any idea how to tackle that?
Jack Hayes Jack Hayes Newcomer
7 messages
joined Nov 2008
#16 ·
brightstag1 said:Awesome, thanks 🙂

I have one more question, if you don't mind 🙂
Let's say I have columns set up like this: date, category (fiction, non-fiction, pop science, etc.), and the number of books received on that date.
I want to calculate cumulative totals—basically, the running total of books specifically for the "fiction" category per date. How do I pull that off?

Just follow the same steps from my last post, but this time select "for each change in:" CATEGORY and make sure to uncheck "Replace current subtotal." So, first you add a subtotal for every change in date, and then you add another subtotal for every change in category. Just ensure the sort order is by date and then by category. 👍
brightstag1 brightstag1 Newcomer
3 messages
joined Mar 2012
#17 ·
Got it, thanks again! 🙂
Kyle Johnson2 Kyle Johnson2 Newcomer
1 message
joined Feb 2015
#18 ·
brightstag1 said:Got it. Thanks again, 🙂

Interesting issue. Looks like you nailed it using some tips from @Jack Hayes/">@@Jack Hayes
The idea isn't bad, honestly. Just feels a bit messy to me. Personally, I'd just lean on the power of PIVOT TABLE instead. Definitely worth looking into for next time. 😉
Cheers, Jack Hayes 😉
Jack Hayes Jack Hayes Newcomer
7 messages
joined Nov 2008
#19 ·
Kyle Johnson2 said:That’s an interesting little puzzle, though it looks like you managed to crack it using the tips from @Jack Hayes/">@@Jack Hayes
The idea itself isn't bad at all. For me, though, it feels a bit cluttered. Personally, I’d lean on the power of PIVOT TABLE instead—definitely give that a thought for next time! 😉
Cheers to Jack Hayes 😉

A pivot table is an absolute beast, but for a straightforward issue like this, sub-items work just fine. It doesn't feel messy to me. If anything, keeping the table structure identical is actually a plus for the user, especially since they get those extra sub-item rows. Plus, you get those handy little buttons (1, 2, 3, etc.) right up there by the column headers—perfect for toggling specific sub-groups you might want to copy over...
Best! 🙂
Justin Moore10 Justin Moore10 Newcomer
2 messages
joined Mar 2012
#20 ·
How do I turn off auto-capitalization at the start of sentences?

You must log in or register to reply here.

Log in Register

🔗 Similar threads