Formula

ekslit

New Member
Joined
Apr 10, 2020
Messages
48
Hello guys,

I have this case below and my aim is to fill up column H for subtasks. Needed result is that all sub-tasks below story should have the same fix version value than their story.
Can you please share with me the right formula to achieve this?

Thanks in advance.

1629820081766.png
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
Do you already have a formula in col H?
 
Upvote 0
Ok, in that case are you simply trying to copy the release level down into the blank cells below?
 
Upvote 0
Ok, select col H, then press F5, Special, Blanks, With the blank cells still selected type = followed by the up arrow & then Ctrl Enter.
 
Upvote 0
Ok, select col H, then press F5, Special, Blanks, With the blank cells still selected type = followed by the up arrow & then Ctrl Enter.
It's working fine.
Thank you very much
but i m trying to automate this using vba and this is my code for this part. column H become in my code column P.
I tried this formula in the code but its working just for the first subtask below story and not all of them.

1629884577220.png
 
Upvote 0
If you wanted a VBA solution, why did you title the thread "Formula"?
If the manual process I suggested worked, then you can use
VBA Code:
Sub ekslit()
   Range("H:H").SpecialCells(xlBlanks).FormulaR1C1 = "=r[-1]c"
End Sub
 
Upvote 0
Solution
If you wanted a VBA solution, why did you title the thread "Formula"?
If the manual process I suggested worked, then you can use
VBA Code:
Sub ekslit()
   Range("H:H").SpecialCells(xlBlanks).FormulaR1C1 = "=r[-1]c"
End Sub
Sorry about the thread title. Will be more careful next time.
The formula is working perfectly.
Thank you very much for your help.
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,553
Messages
6,120,182
Members
448,948
Latest member
spamiki

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