Usefull Excel Trick!!! Easy to Advance!! Keep this going!!

coocoo

New Member
Joined
Aug 14, 2008
Messages
46
I'm wondering if anyone can share a neat and Usefull excel tricks!!

It can be something easy or advance. Anything would be great!

Here's mine:
To copy just the subtotals into another spreadsheet (instead of selecting one ea. row/cell one by one)

Select the are you'd like to copy - F5, special - visible cell only - copy. Then paste in the diff area/spreadsheet. You will only copy the visible area only.

Any other trick/shortcut would be greatly appreciated.
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
=A1+B1+N("AddsA1toB1")

Displays what the formula does in the formula bar but not the result.
 
Hi VoG,

When i try that it gives me this result #name?. Any idea why
 
...Any idea why
Seems that you've used non English version of Excel.
This macro sets the required formula irregardless of Excel localization:
Rich (BB code):

Sub Test()
  [A1].Value = 1
  [B1].Value = 2
  [C1].Formula = "=A1+B1+N(""MyComment:AddsA1toB1"")"
End Sub
 
Last edited:
Quick and easy way of converting a 7 digit Julian date (i.e. YYYYDDD. 31 Jan 2010 would read 2010031) back to a normal date is using the DATE function. So:
Code:
 =DATE(LEFT(A1,4),1,RIGHT(A1,3))
Assuming Cell A1 contains the julian date.

This happily replaced the following:
Code:
Format(CDate(Format(((DateValue("01/01/"+LTrim(Str(1900+Int([dob]/1000))))+[dob]-Int([dob]/1000)*1000))-1,"mm-dd-yy")),"dd/mm/yyyy")

-------------------------
damir
 
So combining the two suggestions we get:
Code:
=DATE(LEFT(A1,4),1,RIGHT(A1,3))+N("convert Julian date")
 
Seems that you've used non English version of Excel.
This macro sets the required formula irregardless of Excel localization:
Rich (BB code):
Sub Test()
[A1].Value = 1
[B1].Value = 2
[C1].Formula = "=A1+B1+N(""MyComment:AddsA1toB1"")"
End Sub

This doesn't work for my German XL 07 version on Win XP. I see the result in the cell and the formula in the formula bar.

Code:
[A23].Formula = "=C10+C11+N(""MyComment:AddsA1toB1"")"

Excel Workbook
A
2316
Programmübersicht
Cell Formulas
RangeFormula
A23=C10+C11+N("MyComment:AddsA1toB1")
 
I'm wondering if anyone can share a neat and Usefull excel tricks!!

It can be something easy or advance. Anything would be great!

Here's mine:
To copy just the subtotals into another spreadsheet (instead of selecting one ea. row/cell one by one)

Select the are you'd like to copy - F5, special - visible cell only - copy. Then paste in the diff area/spreadsheet. You will only copy the visible area only.

Any other trick/shortcut would be greatly appreciated.


Pressing Alt + ; will select visible cells only. Saves you having to press F5, click special etc.
 
This doesn't work for my German XL 07 version on Win XP. I see the result in the cell and the formula in the formula bar.
It’s correct if C10 + C11 = 16.
N(“AnyText”) is used just as a formula comment and does not change the sum as equally to zero
 

Forum statistics

Threads
1,222,644
Messages
6,167,276
Members
452,108
Latest member
Sabat01

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top