If cell is not blank, add it to the cell below. Those cells are linked to another Sheet

Perguti

New Member
Joined
Oct 3, 2018
Messages
1
Hello Network,

I'm facing now a task, where I need to linked a cell to another cells, for example:

sheet 1 has a title in B2
Sheet 2 has a column C.

C3 is actually a list where this titles need to appear. fIRST, let say the column C is from 2 until 10 (row)S
So, if I add a title in B2 but in C2 there is already a title (not blanked), then I want that this title appear right below of C2 and so on..
if have tried with

=IF(C2<>""C3,if(C2="",othersheetB2))


thank you!!!
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
I believe you would need a vba solution.
I'm not very good with formulas.
But I do not believe this can be done with just a formula.
Are you willing to use a Vba solution.

A script would automatically run when you enter a value in sheet1 Range("B2")
It would be better to give the two sheet names.
Like Mary and Jane
Like sheet1 name is Mary
Sheet2 name is Jane
 
Upvote 0
If your willing to use Vba solution.
Try this:

This is an auto sheet event script
Your Workbook must be Macro enabled
To install this code:
Right-click on the sheet tab Sheet 1
Select View Code from the pop-up context menu
Paste the code in the VBA edit window

Now when you enter a value into Range("B2") of sheet1 that value will now be entered in sheet2 column C

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
'Modified  10/3/2018  2:17:09 AM  EDT
If Not Intersect(Target, Range("B2")) Is Nothing Then
If Target.Cells.CountLarge > 1 Or IsEmpty(Target) Then Exit Sub
Dim Lastrow As Long
Lastrow = Sheets(2).Cells(Rows.Count, "C").End(xlUp).Row + 1
Sheets(2).Cells(Lastrow, "C").Value = Target.Value
Range("B2").Select
End If
End Sub
 
Upvote 0
Your thread is a bit confusing, but are you trying to do this ??

Code:
=IF(C2="","",C2&Sheet2!C3)

Otherwise, look at MAIT's solution OR post some sample data and how the outcome should look !!
 
Upvote 0

Forum statistics

Threads
1,214,922
Messages
6,122,281
Members
449,075
Latest member
staticfluids

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