Тёмный

Data Validation in Excel VBA - VBA Code to Validate Data Entry 

Excel Destination
Подписаться 46 тыс.
Просмотров 21 тыс.
50% 1

Опубликовано:

 

28 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 15   
@MohAboAbdo
@MohAboAbdo 3 года назад
Thank you so mutch Sir.
@ExcelDestination
@ExcelDestination 3 года назад
You are most welcome
@rhmanagoli
@rhmanagoli 3 года назад
Sir, Good Logic
@srinivasgoudmanthapuri2719
@srinivasgoudmanthapuri2719 Год назад
👌👌
@karmusinghsiddhu190
@karmusinghsiddhu190 3 года назад
can pls help on this Private Sub Worksheet_Change(ByVal Target As Excel.Range) If Range("A1") "" Then Range("A1").Select Selection.AutoFill _ Destination:=Range("A1:A5"), Type:=xlFillDefault 'Range("H1").Value = "=IF(AND(F5="",G5="",H5="")),"",(I4+F5-G5-H5)" End If 'End With End Sub
@davidtostenson4083
@davidtostenson4083 3 года назад
Is there a video to validate data from a known list? I want an error message for invalid part number without using a drop down menu.
@anhnhatnguyet4628
@anhnhatnguyet4628 3 года назад
In folder X, I have 2 excel files from column A to column H. Now I want to delete the unnecessary columns B: D, F, H in both excel files of the folder. How to write VBA code, so that when running the code, a message box will appear looking for the X directory address (or you can enter the X directory path directly into the code)
@ganeshkumar-tj6lx
@ganeshkumar-tj6lx 3 года назад
Sub deletecolumn() Dim MyFolder As String Dim MyFile As String Application.DisplayAlerts = False Application.ScreenUpdating = False MyFolder = "E:\Exp" MyFile = Dir(MyFolder & "\*.xlsx") Do While MyFile "" Set OpenBook = Application.Workbooks.Open(MyFolder & "\" & MyFile) OpenBook.ActiveSheet.Range("B:D,F:F,H:H").Delete OpenBook.ActiveSheet.Range("A1").Select MyFile = Dir OpenBook.Close SaveChanges:=True Loop Application.ScreenUpdating = True End Sub
@sahirarman8409
@sahirarman8409 3 года назад
sir please give the vba code export excel range to png jpg format high resolation 300dpi and 600 dpi
@ExcelDestination
@ExcelDestination 3 года назад
Will upload soon
@ansjai7526
@ansjai7526 3 года назад
Sir make a video on live data from a source and make a excel with different time intervals automatically
@ExcelDestination
@ExcelDestination 3 года назад
Will try
@JATINKUMAR-qu4vi
@JATINKUMAR-qu4vi 2 года назад
Awesome tutorial👍
@TheJaebeomPark
@TheJaebeomPark 3 года назад
Thanks
@ExcelDestination
@ExcelDestination 3 года назад
Welcome
Далее
VBA to Convert Table to Range - Excel VBA Example
2:52
EASILY Make an Automated Data Entry Form in Excel
14:52
We finally APPROVED @ZachChoi
00:31
Просмотров 8 млн
Excel VBA Run  Code from Drop Down List
8:18
Просмотров 5 тыс.
VBA: Multilevel dependent drop-down in User Form
10:30
Просмотров 108 тыс.
How to get the Last Row in VBA(The Right Way!)
15:41
Просмотров 160 тыс.
Learn Excel VBA to Automate Anything
14:02
Просмотров 439 тыс.
VBA Coding Basics | Step by Step VBA Learning in Hindi
12:14