Excel formula question

Sathyat

New Member
Joined
Nov 13, 2021
Messages
1
Office Version
  1. 2016
Platform
  1. Windows
I have a cell value ( i.e - A1-A8). Can you guys explain the logic to expand the values. Answer should be A1,A2,A3,A4,A5,A6,A7,A8 . Excel formula would be preferable
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
I don't know how to solve this via Excel-Formula.
But I can provide a function that does this:

VBA Code:
Public Function split(cVal As String)
  On Error GoTo ErrHandle
  solution = ""
  vstart = CInt(Mid(cVal, 2, 1))
  vend = CInt(Right(cVal, 1))
  sletter = Left(cVal, 1)
  For i = vstart To vend
    solution = solution & sletter & i
    If i <> vend Then
      solution = solution & ","
    End If
  Next i
  split = solution
  Exit Function
ErrHandle:
  split = "! Error"
End Function

Copy this in a vba-module. In any Excel cell put "=split(A1)" (assuming your value is in cell A1) and the result will be as desired.
 
Upvote 0

Forum statistics

Threads
1,214,819
Messages
6,121,746
Members
449,050
Latest member
excelknuckles

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