Макрос для среднего значения в excel

 

aset224

Пользователь

Сообщений: 47
Регистрация: 08.04.2020

#1

09.04.2020 10:21:09

Здравствуйте помогите пожалуйста сутки уже ковыряюсь не могу решить задачку для вычисления среднего значения, суть такова в столбце А ищет похожий текст (в примере «Итогона ПК»)  и в этой строчке уже в столбце «С» и в столбце «Е» вычисляет среднее значения на 100м в среди данных в этом диапозоне . Всем спасибо за помощь

Код
Sub Среднее_по_искомому_тексту()
    Dim strFistCell As String
    Dim strLastCell As String
    Dim strFormula As String
    Dim c As Range
    Dim SrchRng
    lr = Cells(Rows.Count, 1).End(xlUp).Row
    Set c = Range("A:A").Find("Итого на ПК:", LookIn:=xlValues)
    For i = 1 To lr
    If Cells(i, 1).Value Like c Then
    Range("C" & i).Select
    Range("E" & i).Select
    Selection.Row = 1 Then Exit Sub
    strFistCell = ActiveCell.Offset(-1, 0).End(xlUp).Address
    strLastCell = ActiveCell.Offset(-1, 0).Address
    strFormula = "=AVERAGE(" & strFistCell & ":" & strLastCell & ")"
    ActiveCell.Formula = strFormula
    End If
    Next i
 End Sub

Прикрепленные файлы

  • пример.xls (28.5 КБ)

Изменено: aset22409.04.2020 12:23:03
(несоответствие правилам форума)

 

Jack Famous

Пользователь

Сообщений: 10852
Регистрация: 07.11.2014

OS: Win 8.1 Корп. x64 | Excel 2016 x64: | Browser: Chrome

#2

09.04.2020 12:00:13

aset224, здравствуйте
Описание не очень — сделал, как понял. Файл слишком большой для примера — уменьшил (на первый раз делаю за вас  ;) )

Выделить область данных, в которой нужны только крайние столбцы (первый — признак, последний — для вычисления и вставки) и нажать кнопку. В примере область данных: «A2:C26»

Если угадал, то название темы: Вычисление макросом среднего арифметического в промежуточных итогах таблицы

Прикрепленные файлы

  • срзнач.xls (37.5 КБ)
  • 2020-04-09_12-39-17.png (16.6 КБ)

Изменено: Jack Famous09.04.2020 12:39:44

Во всех делах очень полезно периодически ставить знак вопроса к тому, что вы с давних пор считали не требующим доказательств (Бертран Рассел) ►Благодарности сюда◄

 

aset224

Пользователь

Сообщений: 47
Регистрация: 08.04.2020

Jack Famous, Спасибо большое, и прошу прощения за описание, думаю заработает

 

Jack Famous

Пользователь

Сообщений: 10852
Регистрация: 07.11.2014

OS: Win 8.1 Корп. x64 | Excel 2016 x64: | Browser: Chrome

aset224, пожалуйста
Поправил диапазон данных в инструкции, вынес инструкцию в название спойлера

Во всех делах очень полезно периодически ставить знак вопроса к тому, что вы с давних пор считали не требующим доказательств (Бертран Рассел) ►Благодарности сюда◄

 

aset224

Пользователь

Сообщений: 47
Регистрация: 08.04.2020

Jack Famous,спасибо огромное, работает) но есть один нюанс я заполняю пустые прочерком «-«, он их не учитывает в вычислении среднего значения, но если за ПК нет числовых данных вылетает ошибка.
P.S. с меня кофе. скинь мне свой киви или yandex money

 

Jack Famous

Пользователь

Сообщений: 10852
Регистрация: 07.11.2014

OS: Win 8.1 Корп. x64 | Excel 2016 x64: | Browser: Chrome

#6

09.04.2020 16:34:33

Цитата
aset224: есть один нюанс

скиньте сюда пример — посмотрим

Цитата
aset224: с меня кофе. скинь мне свой киви или yandex money

давайте останемся «на вы» всё-таки. Заменил цитату в подписи на номер кошелька

Во всех делах очень полезно периодически ставить знак вопроса к тому, что вы с давних пор считали не требующим доказательств (Бертран Рассел) ►Благодарности сюда◄

 

aset224

Пользователь

Сообщений: 47
Регистрация: 08.04.2020

 

Jack Famous

Пользователь

Сообщений: 10852
Регистрация: 07.11.2014

OS: Win 8.1 Корп. x64 | Excel 2016 x64: | Browser: Chrome

#8

10.04.2020 10:51:10

aset224, за кофе спасибо)

Проверяйте:

теперь он любые НЕчисловые данные в проставляемом столбце считает нолями. Excel в таком случае исключил бы такие поля из расчёта (см. скрин)
Также добавлены проверки и итоговое сообщение с временем выполнения в заголовке

Код

Прикрепленные файлы

  • срзнач.xls (33.5 КБ)
  • 2020-04-10_13-20-48.png (21 КБ)

Изменено: Jack Famous10.04.2020 13:21:13
(Обновил скрин)

Во всех делах очень полезно периодически ставить знак вопроса к тому, что вы с давних пор считали не требующим доказательств (Бертран Рассел) ►Благодарности сюда◄

 

aset224

Пользователь

Сообщений: 47
Регистрация: 08.04.2020

Jack Famous,
считает с ошибкой, как можно это исправить?

Изменено: aset22410.04.2020 13:55:56
(не тот скрин)

 

Jack Famous

Пользователь

Сообщений: 10852
Регистрация: 07.11.2014

OS: Win 8.1 Корп. x64 | Excel 2016 x64: | Browser: Chrome

#10

11.04.2020 12:34:16

Цитата
aset224: считает с ошибкой

блин — я же вам про это и говорил)))

Цитата
Jack Famous: теперь он любые НЕчисловые данные в проставляемом столбце считает нолями. Excel в таком случае исключил бы такие поля из расчёта

то есть «ошибка» была в том, что при вычислении среднего арифметического полученную сумму он делит на количество ячеек с учётом прочерков  :D

Код с комментариями

Прикрепленные файлы

  • срзнач.xls (40.5 КБ)
  • 2020-04-11_12-33-31.png (18.05 КБ)

Во всех делах очень полезно периодически ставить знак вопроса к тому, что вы с давних пор считали не требующим доказательств (Бертран Рассел) ►Благодарности сюда◄

 

aset224

Пользователь

Сообщений: 47
Регистрация: 08.04.2020

Jack Famous, Спасибо очень Вам признателен и благодарен)
с меня кофеёк)

 

Jack Famous

Пользователь

Сообщений: 10852
Регистрация: 07.11.2014

OS: Win 8.1 Корп. x64 | Excel 2016 x64: | Browser: Chrome

aset224, без проблем — обращайтесь  ;)
за кофе благодарю  :)

Во всех делах очень полезно периодически ставить знак вопроса к тому, что вы с давних пор считали не требующим доказательств (Бертран Рассел) ►Благодарности сюда◄

 

БМВ

Модератор

Сообщений: 21385
Регистрация: 28.12.2016

Excel 2013, 2016

А нужен именно макрос?
=SUBTOTAL(1;INDEX(C:C;IFERROR(LOOKUP(2;1/($A$1:A7=A8);ROW($A$1:A7)+1);2)):C7)

По вопросам из тем форума, личку не читаю.

 

Jack Famous

Пользователь

Сообщений: 10852
Регистрация: 07.11.2014

OS: Win 8.1 Корп. x64 | Excel 2016 x64: | Browser: Chrome

#14

13.04.2020 09:39:00

Исправлена ошибка деления на ноль (когда для итога не было данных)

Код с комментариями

Прикрепленные файлы

  • 2020-04-13_09-37-03.png (17.99 КБ)
  • срзнач.xls (42 КБ)

Изменено: Jack Famous13.04.2020 09:41:33

Во всех делах очень полезно периодически ставить знак вопроса к тому, что вы с давних пор считали не требующим доказательств (Бертран Рассел) ►Благодарности сюда◄

 

aset224

Пользователь

Сообщений: 47
Регистрация: 08.04.2020

Jack Famous, Благодарю Вас работает)

 

Jack Famous

Пользователь

Сообщений: 10852
Регистрация: 07.11.2014

OS: Win 8.1 Корп. x64 | Excel 2016 x64: | Browser: Chrome

#16

14.04.2020 10:59:32

aset224, пожалуйста  ;)

Во всех делах очень полезно периодически ставить знак вопроса к тому, что вы с давних пор считали не требующим доказательств (Бертран Рассел) ►Благодарности сюда◄

0 / 0 / 0

Регистрация: 13.03.2020

Сообщений: 1

1

Excel

Макрос для поиска среднего значения диапазона

28.02.2021, 17:27. Показов 7415. Ответов 1


Студворк — интернет-сервис помощи студентам

Прошу прощения за глупый вопрос, но либо я плохо мониторил, либо действительно не нашел решения своего вопроса
Суть в следующем, есть ряд числовой ряд данных столбцом по годам (см вложенный файл), количество строк каждый раз будет разным, но мне нужно чтоб для формулы среднего значения происходило выделение и расчет именно того количества данных которое есть на данном листе



0



elixi

297 / 157 / 86

Регистрация: 01.04.2020

Сообщений: 436

28.02.2021, 23:25

2

Лучший ответ Сообщение было отмечено alginow как решение

Решение

alginow,

Visual Basic
1
2
3
4
5
6
7
8
9
10
11
Sub srz()
    Dim RwL%, myRange As Range
    With ActiveSheet
        RwL = .Cells(.Rows.Count, 2).End(xlUp).Row
        Set myRange = .Range("B2:B" & RwL)
        ' например:
        Cells(1, 3).Formula = "=average(" & myRange.Address & ")"
        ' или:
        MsgBox Application.WorksheetFunction.Average(myRange)
    End With
End Sub



1



Расчет среднего арифметического

В данном разделе мы рассмотрим небольшой трюк, с помощью которого можно быстро рассчитать среднее значение ячеек, расположенных над активной ячейкой, с отображением результата в активной ячейке.

Как известно, расчет среднего значения можно выполнять штатными средствами Excel – с помощью функции СРЗНАЧ. Однако в некоторых случаях удобнее воспользоваться макросом, код которого представлен в листинге 3.100 (этот код нужно набрать в стандартном модуле редактора VBA).

Листинг 3.100. Расчет среднего значения

Sub CalculateAverage()

Dim strFistCell As String

Dim strLastCell As String

Dim strFormula As String

‘ Условия закрытия процедуры

If ActiveCell.Row = 1 Then Exit Sub

‘ Определение положения первой и последней ячеек для расчета

strFistCell = ActiveCell.Offset(-1, 0).End(xlUp).Address

strLastCell = ActiveCell.Offset(-1, 0).Address

‘ Формула для расчета среднего значения

strFormula = «=AVERAGE(» & strFistCell & «:» & strLastCell &

«)»

‘ Ввод формулы в текущую ячейку

ActiveCell.Formula = strFormula

End Sub

В результате выполнения данного макроса в активной ячейке отобразится среднее арифметическое, рассчитанное на основании расположенных выше непустых ячеек; при этом ячейки с данными должны следовать одна за другой, без пробелов. Иначе говоря, если активна ячейка А5, а над ней все ячейки содержат данные, кроме ячейки А2, то среднее арифметическое будет рассчитано на основании данных ячеек A3 и А4 (ячейка А1 в расчете участвовать не будет). Если же пустой является только ячейка А4, то среднее арифметическое в ячейке А5 рассчитано не будет.

In this Article

  • AVERAGE WorksheetFunction
  • Assign AVERAGE Result to a Variable
  • AVERAGE with a Range Object
  • AVERAGE Multiple Range Objects
  • Using AVERAGEA
  • Using AVERAGEIF
  • Disadvantages of WorksheetFunction
    • Using the Formula Method
    • Using the FormulaR1C1 Method

This tutorial will demonstrate how to use the Excel Average function in VBA.

The Excel AVERAGE Function is used to calculate an average from a range cells in your Worksheet that have values in them. In VBA, It is accessed using the WorksheetFunction method.

AVERAGE WorksheetFunction

The WorksheetFunction object can be used to call most of the Excel functions that are available within the Insert Function dialog box in Excel. The AVERAGE function is one of them.

Sub TestFunction
  Range("D33") = Application.WorksheetFunction.Average("D1:D32")
End Sub

vba average syntax

You are able to have up to 30 arguments in the AVERAGE  function. Each of the arguments must refer to a range of cells.

This example below will produce the average of the sum of the cells B11 to N11

Sub TestAverage()
   Range("O11") = Application.WorksheetFunction.Average(Range("B11:N11"))
End Sub

The example below will produce an average of the sum of the cells in B11 to N11 and the sum of the cells in B12:N12. If you do not type the Application object, it will be assumed.

Sub TestAverage()
  Range("O11") = WorksheetFunction.Average(Range("B11:N11"),Range("B12:N12")) 
End Sub

Assign AVERAGE Result to a Variable

You may want to use the result of your formula elsewhere in code rather than writing it directly back to an Excel Range. If this is the case, you can assign the result to a variable to use later in your code.

Sub AssignAverage()
   Dim result As Integer
'Assign the variable   
   result = WorksheetFunction.Average(Range("A10:N10"))
'Show the result
   MsgBox "The average for the cells in this range is " & result
End Sub

vba average msgbox

AVERAGE with a Range Object

You can assign a group of cells to the Range object, and then use that Range object with the WorksheetFunction object.

Sub TestAverageRange()
   Dim rng As Range
'assign the range of cells
   Set rng = Range("G2:G7")
'use the range in the  formula
   Range("G8") = WorksheetFunction.Average(rng)
'release the range object
  Set rng = Nothing
End Sub

AVERAGE Multiple Range Objects

Similarly, you can calculate the average of the cells from multiple Range Objects.

Sub TestAverageMultipleRanges() 
   Dim rngA As Range 
   Dim rngB as Range
'assign the range of cells 
   Set rngA = Range("D2:D10") 
   Set rngB = Range("E2:E10")   
'use the range in the formula 
Range("E11") = WorksheetFunction.Average(rngA, rngB)
 'release the range object
  Set rngA = Nothing 
  Set rngB = Nothing
End Sub

Using AVERAGEA

The AVERAGEA Function differs from the AVERAGE function in that it create an average from all the cells in a range, even if one of the cells has text in it – it replaces the text with a zero and includes that in calculating the average.   The AVERAGE function would ignore that cell and not factor it into the calculation.

Sub TestAverageA()
   Range("B8) = Application.WorksheetFunction.AverageA(Range("A10:A11")) 
End Sub

In the example below, the AVERAGE function returns a different value to the AVERAGEA function when the calculation is used on cells A10 to A11

vba average averagea

The answer for the AVERAGEA formula is lower than the AVERAGE formula as it replaces the text in A11 with a zero, and therefore averages over 13 values rather than the 12 values that the AVERAGE is calculating over.

Using AVERAGEIF

The AVERAGEIF Function allows you to average the sum of a range of cells that meet a certain criteria.

Sub AverageIf()
   Range("F31") = WorksheetFunction.AverageIf(Range("F5:F30"), "Savings", Range("G5:G30"))
End Sub

The procedure above will only average the cells in range G5:G30 where the corresponding cell in column F has the word ‘Savings’ in it.  The criteria you use has to be in quotation marks.

vba average average if

VBA Coding Made Easy

Stop searching for VBA code online. Learn more about AutoMacro — A VBA Code Builder that allows beginners to code procedures from scratch with minimal coding knowledge and with many time-saving features for all users!

automacro

Learn More

Disadvantages of WorksheetFunction

When you use the WorksheetFunction to average the values in a range in your worksheet, a static value is returned, not a flexible formula. This means that when your figures in Excel change, the value that has been returned by the WorksheetFunction will not change.

vba average static

In the example above, the procedure TestAverage procedure has created the average of B11:M11 and put the answer in N11.   As you can see in the formula bar, this result is a figure and not a formula.

If any of the values change therefore in the Range(B11:M11 ), the results in N11 will NOT change.

Instead of using the WorksheetFunction.Average, you can use VBA to apply the AVERAGE Function to a cell using the Formula or FormulaR1C1 methods.

Using the Formula Method

The formula method allows you to point specifically to a range of cells eg: B11:M11 as shown below.

Sub TestAverageFormula()
  Range("N11").Formula = "=Average(B11:M11)"
End Sub

vba average formula

Using the FormulaR1C1 Method

The FomulaR1C1 method is more flexible in that it does not restrict you to a set range of cells. The example below will give us the same answer as the one above.

Sub TestAverageFormula()
   Range("N11").Formula = "=Average(RC[-12]:RC[-1])"
End Sub

vba average formula r1c1

However, to make the formula more flexible, we could amend the code to look like this:

Sub TestAverageFormula() 
   ActiveCell.FormulaR1C1 = "=Average(R[-11]C:R[-1]C)" 
End Sub

Wherever you are in your worksheet, the formula will then average the values in the 12 cells directly to the left of it and place the answer into your ActiveCell. The Range inside the AVERAGE function has to be referred to using the Row (R) and Column (C) syntax.

Both these methods enable you to use Dynamic Excel formulas within VBA.

There will now be a formula in N11 instead of a value.

In Excel, you can use VBA to calculate the average values from a range of cells or multiple ranges. And, in this tutorial, we are going to learn the different ways that we can use it.

Average in VBA using WorksheetFunction

In VBA, there are multiple functions that you can use, but there’s no specific function for this purpose. That does not mean we can’t do an average. In VBA, there’s a property called WorksheetFunction that can help you to call functions into a VBA code.

average-in-vba-using-worksheet-function

Let’s average values from the range A1:A10.

  1. First, enter the worksheet function property and then select the AVERAGE function from the list.
    2-worksheet-function-average
  2. Next, you need to enter starting parenthesis as you do while entering a function in the worksheet.
    3-enter-starting-paranthesis
  3. After that, we need to use the range object to refer to the range for which we want to calculate the average.
    4-ue-the-range-object
  4. In the end, type closing parenthesis and assign the function’s returning value to cell B1.
    5-type-close-pranthesis
Application.WorksheetFunction.Average(Range("A1:A10"))

Now when you run this code, it will calculate the average for the values that you have in the range A1:A10 and enter the value in cell B1.

run-the-code-calculates-average

Average Values from an Entire Column or a Row

In that case, you just need to specify a row or column instead of the range that we have used in the earlier example.

'for the entire column A
Range("B1") = Application.WorksheetFunction.Average(Range("A:A"))

'for entire row 1
Range("B1") = Application.WorksheetFunction.Average(Range("1:1"))

Use VBA to Average Values from the Selection

Now let’s say you want to average value from the selected cells only in that you can use a code just like the following.

Sub vba_average_selection()

Dim sRange As Range
Dim iAverage As Long

On Error GoTo errorHandler

Set sRange = Selection

iAverage = WorksheetFunction.Average(Range(sRange.Address))
MsgBox iAverage

Exit Sub

errorHandler:
MsgBox "make sure to select a valid range of cells"

End Sub

In the above code, we have used the selection and then specified it to the variable “sRange” and then use that range variable’s address to get the average.

VBA Average All Cells Above

The following code takes all the cells from above and average values from them and enters the result in the selected cell.

Sub vba_auto_Average()

Dim iFirst As String
Dim iLast As String
Dim iRange As Range

On Error GoTo errorHandler

iFirst = Selection.End(xlUp).End(xlUp).Address
iLast = Selection.End(xlUp).Address

Set iRange = Range(iFirst & ":" & iLast)
ActiveCell = WorksheetFunction.Average(iRange)

Exit Sub

errorHandler:
MsgBox "make sure to select a valid range of cells"

End Sub

Average a Dynamic Range using VBA

And in the same way, you can use a dynamic range while using VBA to average values.

Sub vba_dynamic_range_average()

Dim iFirst As String
Dim iLast As String
Dim iRange As Range

On Error GoTo errorHandler

iFirst = Selection.Offset(1, 1).Address
iLast = Selection.Offset(5, 5).Address

Set iRange = Range(iFirst & ":" & iLast)
ActiveCell = WorksheetFunction.Average(iRange)

Exit Sub

errorHandler:
MsgBox "make sure to select a valid range of cells"

End Sub

Average a Dynamic Column or a Row

In the same way, if you want to use a dynamic column you can use the following code where it will take the column of the active cell and average for all the values that you have in it.

Sub vba_dynamic_column()

Dim iCol As Long

On Error GoTo errorHandler

iCol = ActiveCell.Column
MsgBox WorksheetFunction.Average(Columns(iCol))

Exit Sub

errorHandler:
MsgBox "make sure to select a valid range of cells"

End Sub

And for a row.

Sub vba_dynamic_row()

Dim iRow As Long

On Error GoTo errorHandler

iRow = ActiveCell.Row

MsgBox WorksheetFunction.Average(Rows(iCol))

Exit Sub

errorHandler:
MsgBox "make sure to select a valid range of cells"

End Sub

i have two columns: data and results. every so often the values in results change to 10 and I need to find the average, min and max during, before and after each time of the corresponding cells in data. So average value in column data over the course of 10s, and the space between 10s. Sort of like finding the average at a local peak (or plateau in this case) and the space between peaks. Then spit these out into another table that says what the average is and if it is before during or after a 10 occurrence. How do i designate this if statement to cover these cases and indicate what average corresponds to what section of data?

0.5				10
0.8				10
1.1				10
1.4				10
1.7				10
2				10
2.3				5
2.6				5
2.9				5
3.2				5
3.5				10
3.8				10
4.1				10
4.4				10
4.7				10
5				10
5.3				10
5.6				10
5.9				5
6.2				5
6.5				5
6.8				5
7.1				10
7.4				10
7.7				10
8				10
8.3				10
8.6				10
8.9				10
9.2				10
9.5				10
9.8				10
10.1				10
10.4				5
10.7				5
11				5

pnuts's user avatar

pnuts

58k11 gold badges85 silver badges137 bronze badges

asked Sep 25, 2014 at 17:18

excelhelp's user avatar

10

You may be able to make use of the built-in Excel SubTotal command and apply multiple functions using this. See this link for the concept and the image below for the sort of basic output. You can code this in VBA and format the resulting output to suit.

Note that if you use this method you will need column headers for the SubTotal command.

Partial specimen output

answered Sep 25, 2014 at 22:01

barryleajo's user avatar

barryleajobarryleajo

1,9562 gold badges12 silver badges13 bronze badges

6

Perform a Vlookup that returns the highest value, lowest value, or average value from a dataset.

Sections:

Vlookup to Return Max

Vlookup to Return Min

Vlookup to Return Average

Notes

Vlookup to Return Max

Return the max value from a table of data.

=VLOOKUP(MAX(A1:A5),A1:B5,2,FALSE)

e3b71f5627c68267fc4f3319b4b72d26.png

Result:

52a823924f37b7bc2d0dc8e4bbb1500c.png

This Vlookup function is exactly the same as the regular one except that the MAX() function is used for the lookup value argument.

The MAX() function returns the highest value from the list of numbers and then that value is used to perform the lookup. Otherwise, this is a standard Vlookup function.

Vlookup to Return Min

Return the min value from a table of data.

=VLOOKUP(MIN(A1:A5),A1:B5,2,FALSE)

bc4cf0b24a060209a261a89b9d669f9c.png

Result:

5eec925ff1a28a070b7ca00014eb860a.png

The MIN() function is used in this example to find the smallest value from the list of numbers; then, that value is used to perform the lookup in the lookup_value argument. Otherwise, this is a standard Vlookup function.

Vlookup to Return Average

Return the average value from a table of data.

=VLOOKUP(AVERAGE(A1:A5),A1:B5,2,TRUE)

a056da0dc4dafcad29651f21d282bb02.jpg

Result:

17e0edcf84e4fb2cd0bd8f17ef9e78bf.jpg

The AVERAGE() function is used in the lookup_value argument in order to find the average value from the list of numbers; then, that value, which is the average, is used to perform the lookup.

Note: in this example the last argument, range_lookup, is set to TRUE. This is because the average function can return a value that is not in the list of values and so you need the Vlookup function to find the next highest value. In this example, it doesn’t matter, but, if you want to check it out, change the 5 in row 5 to 12 and the TRUE value in cell D3 to FALSE and you will get an #N/A error.

Notes

Vlookups can be really helpful once you get used to using them and this is just one more way you can make them work for you to quickly return relevant and useful data.

Make sure to download the sample file for this tutorial so you can work with these examples in Excel.

Similar Content on TeachExcel

Filter Data to Show the Bottom X Number of Items in Excel — AutoFilter

Macro: This free Excel macro filters a data set to show the bottom X number of items from that da…

Filter Data to Show the Top X Number of Items in Excel — AutoFilter

Macro: This Excel macro filters a data set to display only the top X number of items in that data…

Return the Min or Max Value Using a Lookup in Excel — INDEX MATCH

Tutorial:
Find the Min or Max value in a range and, based on that, return a value from another rang…

Vlookup Macro to Return All Matching Results from a Sheet in Excel

Macro: This Excel Macro works like a better Vlookup function because it returns ALL of the matchi…

Get the First Word from a Cell in Excel

Tutorial: How to use a formula to get the first word from a cell in Excel. This works for a single c…

Extract the Last Word from a Cell in Excel — User Defined Delimiter Text Extraction — UDF

Macro: This UDF (user defined function) extracts the last word or characters from a cell in Excel…

Subscribe for Weekly Tutorials

BONUS: subscribe now to download our Top Tutorials Ebook!

Понравилась статья? Поделить с друзьями:
  • Макрос для сравнения ячеек excel
  • Макрос для сравнения двух файлов excel
  • Макрос для сравнения двух столбцов excel
  • Макрос для списка на листе excel
  • Макрос для сохранения файла excel в папку