Tilted Forum Project Discussion Community

Tilted Forum Project Discussion Community (https://thetfp.com/tfp/)
-   Tilted Technology (https://thetfp.com/tfp/tilted-technology/)
-   -   Help with Excel (https://thetfp.com/tfp/tilted-technology/116406-help-excel.html)

guthmund 04-18-2007 07:48 AM

Help with Excel
 
It's not really all that important, but a working solution would score me some major points with the boss.

She has this huge balance sheet. The usual stuff, names of vendors, acquisition numbers, invoice numbers, amount paid and running total deducted from the starting budget off to the far right. Nothing too complicated.

What she would like is a way to color code the whole row by (I assume) vendor name (e.g. orders from Alibris would be colored light green, etc. etc.). She would also like every subsequent entry of Alibris in the future to automatically highlight light green. In addition (I know, she doesn't ask much does she?) she'd also like to be able to tally up by vendor (e.g. totalling all purchases made solely from Alibris over the past year).

Now, I'm moderately well versed in Excel and I can sort of do this using conditional formatting. I can highlight all Alibris entries including the matching entries as they are being entered into the spreadsheet. However, it doesn't highlight the entire row and it's a bit cumbersome. In addition, I have no idea how to do the last bit....at all.

I've been beating my head against the computer on this for a couple of hours now and I guess, I'm starting to crack. :)

Help me TFP, you're my only hope. /leia

braisler 04-18-2007 07:57 AM

Um, not too offer too simple of a solution, but can't you just highlight the entire row by clicking on the top tab and color code every entry in that row?

Then wouldn't the tally for that vendor just be a =Sum(x,X) function at the end of the row?

Maybe I am missing something in the complexity here?

Dilbert1234567 04-18-2007 08:01 AM

(under office 2003)

ctrl h (find replace) and expand the options,then click format... on the to be replaced by cell, then the pattern tab, select the color you want to replace it with

if thats not clear enough let me know, but it's very easy to do.

opps miss read your OP, you want cells below to be colored as well... that would take a macro.

A quick and dirty would be to organize vendors by sheet, and have sheet one be an aggregate of all vendors

ShaniFaye 04-18-2007 08:14 AM

cant she sort the spread sheet by vendor (ie whatever column the vendor is in) the subtotal by each vendor change?

guthmund 04-18-2007 09:45 AM

Quote:

Originally Posted by Dilbert1234567
(under office 2003)

ctrl h (find replace) and expand the options,then click format... on the to be replaced by cell, then the pattern tab, select the color you want to replace it with

if thats not clear enough let me know, but it's very easy to do.

opps miss read your OP, you want cells below to be colored as well... that would take a macro.

A quick and dirty would be to organize vendors by sheet, and have sheet one be an aggregate of all vendors

Macro, eh? /shudders

Quote:

Originally Posted by Shani
cant she sort the spread sheet by vendor (ie whatever column the vendor is in) the subtotal by each vendor change?

Of course she could. I should clarify. It's not a matter of finding the information. There are a myriad of ways for her to find the information, this is more about how she wants it formatted. It seems to be a matter of aesthetics rather than actual function.

I know...it's really, really stupid. :(

Thanks anyway :D

Daniel_ 04-18-2007 01:36 PM

No NO NO NO NO!!!

Use of conditional formatting allows you to do this for a whole row dynamically.

Select the rows in a cell and chose Format --> Conditional Formatting.

Lets say you want to colour all vendors from area "North" to be red.

hit the lefthand drop down from "cell" to "formula". In the right hand formula box type =a2="North", and select the background colour red in the box at the botom f the screen.

There are some issues taht you need to look out for when you copy the formats to other rows, but play with the help files, and ask any additional questions here (or PM me).

Good Luck.

healer 04-19-2007 03:02 AM

Another Excel Problem
 
Hi Guys

I didn't want to start a whole new thread, partly because the problem seems so simple.

I have a whole bunch of .csv files. I want to be able to (without copying and pasting) get all the data from the various .csv's into one file - .xls or .csv. I don't care whether they're all in one sheet or in seperate worksheets either, although the option would be nice.

Any ideas?

guthmund 04-19-2007 12:24 PM

Quote:

Originally Posted by Daniel_
No NO NO NO NO!!!

Use of conditional formatting allows you to do this for a whole row dynamically.

Select the rows in a cell and chose Format --> Conditional Formatting.

Lets say you want to colour all vendors from area "North" to be red.

hit the lefthand drop down from "cell" to "formula". In the right hand formula box type =a2="North", and select the background colour red in the box at the botom f the screen.

There are some issues taht you need to look out for when you copy the formats to other rows, but play with the help files, and ask any additional questions here (or PM me).

Good Luck.

Excellent. I'll have to try that at work tomorrow.

I've got (but haven't installed...) a copy of office 2007. I've read I can write conditional format stuff has really come a long way. I'm going to give it a look over the weekend and see what I can do.

Thanks again :)

WarMoney 10-12-2007 09:55 AM

Excel question! (Such a big boy using the search feature!)

I want this.

If D1 through D100 = XX123 then I want XX123 to be bold and red.


Can anyone help?

Daniel_ 10-12-2007 10:48 AM

do you mean is the Sum of d1:d100 = XX123 then XX123 becomes bold red?

If this is the case, select XX123, format -> conditional format.

if cell value = sum(d1:d100) font bold colour red.

Job done.

Pay me later.

WarMoney 10-12-2007 10:51 AM

Quote:

Originally Posted by Daniel_
do you mean is the Sum of d1:d100 = XX123 then XX123 becomes bold red?

If this is the case, select XX123, format -> conditional format.

if cell value = sum(d1:d100) font bold colour red.

Job done.

Pay me later.


Nope, not the sum. There are a bunch of different account numbers in "D", If a certain account number is entered, I would like for it to be bolded and red.

Checks in the mail!!

Nimetic 10-13-2007 01:52 AM

Ah... This's easy if you use dos.

You simply copy the data into a single file then open it. I think the syntax is
copy A.csv B.csv C.csv MyNew.csv

I might have it wrong.... I live half my life on UNIX.

Daniel_ 10-13-2007 01:43 PM

Quote:

Originally Posted by WarMoney
Nope, not the sum. There are a bunch of different account numbers in "D", If a certain account number is entered, I would like for it to be bolded and red.

Checks in the mail!!

Right - in this case you go to cell D2 (assuming tis is the first a/c no) and do cond.format. with the option being "cell value equals" XX123 (or whatever) and then make it red.

For a really special trick, create a cell at the top od the sheet (let's assume you use B1).

In the conditional formatting, say "cell value equals" and then "=$b$1". That way, cells will go bold and red if they match whatever you put into B1. :thumbsup:

WarMoney 10-15-2007 04:48 AM

Thanks for your help, I will try it later and let you know.

Well, It worked! Thanks Daniel_!


All times are GMT -8. The time now is 01:02 PM.

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360