Fill out 'complete correlation table"

mikesal57

Board Regular
Joined
Jul 6, 2011
Messages
193
Office Version
  1. 2016
Platform
  1. Windows
Hi All...

I need the correlation table to be completely fill out so that I can ADD the full columns to do a few functions.
Is there a way to copy and transpose the numbers over?

Thxs
 
Last edited:

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
This is the normal result you get after you compile info...

I need those blank boxes filled in ...its just the same numbers on the other side of the 1's

synchronisation-business-cycles
https://voxeu.org/article/synchronisation-business-cycles
 
Last edited:
Upvote 0
Not 100% sure I know what the end result needs to be, but here's a possibility:

Given a table like this:

ABCDE
50AustraliaBelgiumFinlandFrance
51Australia1
52Belgium0.971
53Finland0.970.981
54France0.930.950.971

<tbody>
</tbody>
Summary



Here's a table that completes the blank spaces along with formulas.
I created the formula in one cell and just pasted it down and across:

ABCDE
57AustraliaBelgiumFinlandFrance
58Australia10.970.970.93
59Belgium0.9710.980.95
60Finland0.970.9810.97
61France0.930.950.971

<tbody>
</tbody>
Summary

Worksheet Formulas
CellFormula
B58=IF(NOT(ISBLANK(B51)),B51,OFFSET($B$51,COLUMNS($B$51:B51)-1,ROWS($B$51:B51)-1))
C58=IF(NOT(ISBLANK(C51)),C51,OFFSET($B$51,COLUMNS($B$51:C51)-1,ROWS($B$51:C51)-1))
D58=IF(NOT(ISBLANK(D51)),D51,OFFSET($B$51,COLUMNS($B$51:D51)-1,ROWS($B$51:D51)-1))
E58=IF(NOT(ISBLANK(E51)),E51,OFFSET($B$51,COLUMNS($B$51:E51)-1,ROWS($B$51:E51)-1))
B59=IF(NOT(ISBLANK(B52)),B52,OFFSET($B$51,COLUMNS($B$51:B52)-1,ROWS($B$51:B52)-1))
C59=IF(NOT(ISBLANK(C52)),C52,OFFSET($B$51,COLUMNS($B$51:C52)-1,ROWS($B$51:C52)-1))
D59=IF(NOT(ISBLANK(D52)),D52,OFFSET($B$51,COLUMNS($B$51:D52)-1,ROWS($B$51:D52)-1))
E59=IF(NOT(ISBLANK(E52)),E52,OFFSET($B$51,COLUMNS($B$51:E52)-1,ROWS($B$51:E52)-1))
B60=IF(NOT(ISBLANK(B53)),B53,OFFSET($B$51,COLUMNS($B$51:B53)-1,ROWS($B$51:B53)-1))
C60=IF(NOT(ISBLANK(C53)),C53,OFFSET($B$51,COLUMNS($B$51:C53)-1,ROWS($B$51:C53)-1))
D60=IF(NOT(ISBLANK(D53)),D53,OFFSET($B$51,COLUMNS($B$51:D53)-1,ROWS($B$51:D53)-1))
E60=IF(NOT(ISBLANK(E53)),E53,OFFSET($B$51,COLUMNS($B$51:E53)-1,ROWS($B$51:E53)-1))
B61=IF(NOT(ISBLANK(B54)),B54,OFFSET($B$51,COLUMNS($B$51:B54)-1,ROWS($B$51:B54)-1))
C61=IF(NOT(ISBLANK(C54)),C54,OFFSET($B$51,COLUMNS($B$51:C54)-1,ROWS($B$51:C54)-1))
D61=IF(NOT(ISBLANK(D54)),D54,OFFSET($B$51,COLUMNS($B$51:D54)-1,ROWS($B$51:D54)-1))
E61=IF(NOT(ISBLANK(E54)),E54,OFFSET($B$51,COLUMNS($B$51:E54)-1,ROWS($B$51:E54)-1))

<tbody>
</tbody>

<tbody>
</tbody>




The formula pattern is:
If a cell has data in it, carry it forward
If not, reverse the columns and rows to get the new answer


What do you think?


BrianGGG
 
Last edited:
Upvote 0
Not 100% sure I know what the end result needs to be, but here's a possibility:

Given a table like this:

ABCDE
50AustraliaBelgiumFinlandFrance
51Australia1
52Belgium0.971
53Finland0.970.981
54France0.930.950.971

<tbody>
</tbody>
Summary



Here's a table that completes the blank spaces along with formulas.
I created the formula in one cell and just pasted it down and across:

ABCDE
57AustraliaBelgiumFinlandFrance
58Australia10.970.970.93
59Belgium0.9710.980.95
60Finland0.970.9810.97
61France0.930.950.971

<tbody>
</tbody>
Summary

Worksheet Formulas
CellFormula
B58=IF(NOT(ISBLANK(B51)),B51,OFFSET($B$51,COLUMNS($B$51:B51)-1,ROWS($B$51:B51)-1))
C58=IF(NOT(ISBLANK(C51)),C51,OFFSET($B$51,COLUMNS($B$51:C51)-1,ROWS($B$51:C51)-1))
D58=IF(NOT(ISBLANK(D51)),D51,OFFSET($B$51,COLUMNS($B$51:D51)-1,ROWS($B$51:D51)-1))
E58=IF(NOT(ISBLANK(E51)),E51,OFFSET($B$51,COLUMNS($B$51:E51)-1,ROWS($B$51:E51)-1))
B59=IF(NOT(ISBLANK(B52)),B52,OFFSET($B$51,COLUMNS($B$51:B52)-1,ROWS($B$51:B52)-1))
C59=IF(NOT(ISBLANK(C52)),C52,OFFSET($B$51,COLUMNS($B$51:C52)-1,ROWS($B$51:C52)-1))
D59=IF(NOT(ISBLANK(D52)),D52,OFFSET($B$51,COLUMNS($B$51:D52)-1,ROWS($B$51:D52)-1))
E59=IF(NOT(ISBLANK(E52)),E52,OFFSET($B$51,COLUMNS($B$51:E52)-1,ROWS($B$51:E52)-1))
B60=IF(NOT(ISBLANK(B53)),B53,OFFSET($B$51,COLUMNS($B$51:B53)-1,ROWS($B$51:B53)-1))
C60=IF(NOT(ISBLANK(C53)),C53,OFFSET($B$51,COLUMNS($B$51:C53)-1,ROWS($B$51:C53)-1))
D60=IF(NOT(ISBLANK(D53)),D53,OFFSET($B$51,COLUMNS($B$51:D53)-1,ROWS($B$51:D53)-1))
E60=IF(NOT(ISBLANK(E53)),E53,OFFSET($B$51,COLUMNS($B$51:E53)-1,ROWS($B$51:E53)-1))
B61=IF(NOT(ISBLANK(B54)),B54,OFFSET($B$51,COLUMNS($B$51:B54)-1,ROWS($B$51:B54)-1))
C61=IF(NOT(ISBLANK(C54)),C54,OFFSET($B$51,COLUMNS($B$51:C54)-1,ROWS($B$51:C54)-1))
D61=IF(NOT(ISBLANK(D54)),D54,OFFSET($B$51,COLUMNS($B$51:D54)-1,ROWS($B$51:D54)-1))
E61=IF(NOT(ISBLANK(E54)),E54,OFFSET($B$51,COLUMNS($B$51:E54)-1,ROWS($B$51:E54)-1))

<tbody>
</tbody>

<tbody>
</tbody>




The formula pattern is:
If a cell has data in it, carry it forward
If not, reverse the columns and rows to get the new answer


What do you think?


BrianGGG


Thxs sooooooo much....worked like a charm...

Mike
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,399
Latest member
alchavar

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