No video

Insert a Check Mark (Tick ✓) Symbol in Excel (using Shortcut, Formula, VBA and more)

  Рет қаралды 171,460

TrumpExcel

TrumpExcel

Күн бұрын

Пікірлер: 54
@wayneedmondson1065
@wayneedmondson1065 5 жыл бұрын
Hi Sumit.. great video on methods and techniques for adding check marks. I especially like your VBA double-click method.. super useful! Thanks for sharing your knowledge. Thumbs up!
@trumpexcel
@trumpexcel 5 жыл бұрын
Glad you found the video useful Wayne
@jabieu3241
@jabieu3241 2 жыл бұрын
@llghostll2254
@llghostll2254 Жыл бұрын
Can I use symbols for attendance then change it to a value when you add all the ticks up using countif? If anyone understands this let me know
@BuiEeyore
@BuiEeyore Жыл бұрын
Very clear and comprehensive video! Thank you!
@prolificent
@prolificent Жыл бұрын
Great Video!
@kmharvey80
@kmharvey80 2 жыл бұрын
found the video in your website, came to YT to like it! Thanks so much!
@House0399
@House0399 3 жыл бұрын
Thank you for this video. Your method is very simple and elegant . Thank you for your help.
@tamfrager
@tamfrager 3 жыл бұрын
Thanks! I was looking for the VBA double-click code. I tried something I found elsewhere, but it didn't work. Yours did. Appreciate it!
@kristyphan8676
@kristyphan8676 4 жыл бұрын
The VBA was so easy and helpful and exactly what I needed! Thank you :)
@jrb6434
@jrb6434 3 жыл бұрын
Very informative. Thank you!
@snehasekar3750
@snehasekar3750 3 жыл бұрын
This is amazing!!! Thank you so much 🔥
@PreetiPrasad2014
@PreetiPrasad2014 5 жыл бұрын
Awesome ways
@russgrand-scrutton4982
@russgrand-scrutton4982 4 жыл бұрын
Hi Suet, I also think this is a great video. Is there a way to write a VBA Code that would enable you to do the double click check marks in two separate column cells like column A cells and column B cells on the same spreadsheet?
@virilerex
@virilerex 3 жыл бұрын
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean) 'Checking whether target cell is in third column If Target.Column = 4 Then 'Prevent cell going into Edit Mode Cancel = True 'Changing font type of the cell Target.Font.Name = "Marlett" 'Checking if target cell value is blank then inserting tick If Target = "" Then Target = "a" Else Target = "" End If End If If Target.Column = 5 Then 'Prevent cell going into Edit Mode Cancel = True 'Changing font type of the cell Target.Font.Name = "Marlett" 'Checking if target cell value is blank then inserting tick If Target = "" Then Target = "a" Else Target = "" End If End If If Target.Column = 6 Then 'Prevent cell going into Edit Mode Cancel = True 'Changing font type of the cell Target.Font.Name = "Marlett" 'Checking if target cell value is blank then inserting tick If Target = "" Then Target = "a" Else Target = "" End If End If If Target.Column = 7 Then 'Prevent cell going into Edit Mode Cancel = True 'Changing font type of the cell Target.Font.Name = "Marlett" 'Checking if target cell value is blank then inserting tick If Target = "" Then Target = "a" Else Target = "" End If End If If Target.Column = 8 Then 'Prevent cell going into Edit Mode Cancel = True 'Changing font type of the cell Target.Font.Name = "Marlett" 'Checking if target cell value is blank then inserting tick If Target = "" Then Target = "a" Else Target = "" End If End If If Target.Column = 9 Then 'Prevent cell going into Edit Mode Cancel = True 'Changing font type of the cell Target.Font.Name = "Marlett" 'Checking if target cell value is blank then inserting tick If Target = "" Then Target = "a" Else Target = "" End If End If If Target.Column = 10 Then 'Prevent cell going into Edit Mode Cancel = True 'Changing font type of the cell Target.Font.Name = "Marlett" 'Checking if target cell value is blank then inserting tick If Target = "" Then Target = "a" Else Target = "" End If End If If Target.Column = 11 Then 'Prevent cell going into Edit Mode Cancel = True 'Changing font type of the cell Target.Font.Name = "Marlett" 'Checking if target cell value is blank then inserting tick If Target = "" Then Target = "a" Else Target = "" End If End If End Sub Here! I was looking for the same thing and I had to find my own solution! Column D to Column K was my target, so as you can see I changed the first target to 4 which is D and I modified the code. I hope this will help!
@chiranjitsingh525
@chiranjitsingh525 5 жыл бұрын
Please make a detail video on interpolation & double interpolation in excel.
@VasanthKumar-hb7ke
@VasanthKumar-hb7ke 4 жыл бұрын
Thank you so much Dear :) Learnt a lot in this video :)
@MrDetteh
@MrDetteh 2 жыл бұрын
It is just a step forward. Never backward.
@jag7051
@jag7051 Жыл бұрын
Hi Great stuff, can this also be done in word, if we have table
@hazemali382
@hazemali382 5 жыл бұрын
many Thanks ♥
@itsshaqq
@itsshaqq 3 жыл бұрын
Nice
@RM12311
@RM12311 2 жыл бұрын
thanks sir
@TN_GAMING_007
@TN_GAMING_007 Жыл бұрын
Insert a Check Mark (Tick ✓)
@kjdouglas22
@kjdouglas22 4 жыл бұрын
Is there a way to do the vba in different columns on the same spreadsheet?
@virilerex
@virilerex 3 жыл бұрын
check my answer pls!
@samipiyash9322
@samipiyash9322 5 жыл бұрын
great
@shanithomas1347
@shanithomas1347 4 жыл бұрын
How do you modify the VBA code to insert the checkmark in specific multiple cell ranges like 3rd cell in 1st row and 9th cell in 10th row.
@llghostll2254
@llghostll2254 Жыл бұрын
So I made a attendance sheet however I used the ticks but to put into a formula to get sums on the attendance am having issues
@devendrabain7748
@devendrabain7748 5 жыл бұрын
Sir i really appreciate all the seaven methods of creating the check box and check marks But till the end of the video i was try to learn how to make empty check box which can be check marked ☑️ or cross marked ❎ in a single click. Please Help
@trumpexcel
@trumpexcel 5 жыл бұрын
This can't happen with a checkbox, as it only has the option to check or uncheck. You can do this with the VBA method though, where you double click once and it shows the checkmark and you double-click again and it shows the cross mark (like a toggle). You will have to change the VBA code for it though
@devendrabain7748
@devendrabain7748 5 жыл бұрын
@@trumpexcel Thanks sir, You are amazing. 👌👌👌👌 If it is possible for you please make video on this too. Else, though i am not good in VBA coding i need to try this my own
@trumpexcel
@trumpexcel 5 жыл бұрын
Use the below VBA code for this: Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean) If Target.Column = 2 Then Cancel = True Target.Font.Name = "Wingdings" If Target.Value = "" Or Target.Value = "û" Then Target.Value = "ü" Else Target.Value = "û" End If End If End Sub
@tihomir4ototo
@tihomir4ototo 3 жыл бұрын
@@trumpexcel How to make all, or specific cells to be able to do this. I can't manage the targer area...?
@fortinovargas4999
@fortinovargas4999 3 жыл бұрын
@@trumpexcel LO LO LO LO P PP ..
@p.narasimamurthy5353
@p.narasimamurthy5353 5 жыл бұрын
How to import data multiple excel files data containing empty cell of every below cell in to power query plus sir
@redhaakhund1271
@redhaakhund1271 2 жыл бұрын
👍👍👍👍👍🏆
@trickstters
@trickstters 4 жыл бұрын
Epic
@virilerex
@virilerex 3 жыл бұрын
Option Explicit Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean) 'Checking whether target cell is in third column If Target.Column = 4 Then 'Prevent cell going into Edit Mode Cancel = True 'Changing font type of the cell Target.Font.Name = "Wingdings" 'Checking if target cell value is blank then inserting tick If Target = "" Then Target = "ü" Else Target = "" End If End If If Target.Column = 5 Then 'Prevent cell going into Edit Mode Cancel = True 'Changing font type of the cell Target.Font.Name = "Wingdings" 'Checking if target cell value is blank then inserting tick If Target = "" Then Target = "ü" Else Target = "" End If End If If Target.Column = 6 Then 'Prevent cell going into Edit Mode Cancel = True 'Changing font type of the cell Target.Font.Name = "Wingdings" 'Checking if target cell value is blank then inserting tick If Target = "" Then Target = "ü" Else Target = "" End If End If If Target.Column = 7 Then 'Prevent cell going into Edit Mode Cancel = True 'Changing font type of the cell Target.Font.Name = "Wingdings" 'Checking if target cell value is blank then inserting tick If Target = "" Then Target = "ü" Else Target = "" End If End If If Target.Column = 8 Then 'Prevent cell going into Edit Mode Cancel = True 'Changing font type of the cell Target.Font.Name = "Wingdings" 'Checking if target cell value is blank then inserting tick If Target = "" Then Target = "ü" Else Target = "" End If End If If Target.Column = 9 Then 'Prevent cell going into Edit Mode Cancel = True 'Changing font type of the cell Target.Font.Name = "Wingdings" 'Checking if target cell value is blank then inserting tick If Target = "" Then Target = "ü" Else Target = "" End If End If If Target.Column = 10 Then 'Prevent cell going into Edit Mode Cancel = True 'Changing font type of the cell Target.Font.Name = "Wingdings" 'Checking if target cell value is blank then inserting tick If Target = "" Then Target = "ü" Else Target = "" End If End If If Target.Column = 11 Then 'Prevent cell going into Edit Mode Cancel = True 'Changing font type of the cell Target.Font.Name = "Wingdings" 'Checking if target cell value is blank then inserting tick If Target = "" Then Target = "ü" Else Target = "" End If End If End Sub
@virilerex
@virilerex 3 жыл бұрын
I have modified the code to work on columns from D (4) to K (11), if you need something like this, i hope this will solve your problem.
@olerius1235
@olerius1235 4 жыл бұрын
✅✅✅✅✅✅✅✅✅✅✅✅
@sparedcolt3224
@sparedcolt3224 2 жыл бұрын
Why is this video 17 mins. I just need to know how to put a check mark in. Should take 2 mins. Max.
@purpleshep3866
@purpleshep3866 3 жыл бұрын
✓ ✓ ✓ ✓ ✓ ✓
@ffmalayali6784
@ffmalayali6784 2 жыл бұрын
Hlo
@russgrand-scrutton4982
@russgrand-scrutton4982 4 жыл бұрын
Russ
@mahindapeiris8290
@mahindapeiris8290 3 жыл бұрын
Hi Suet, I also think this is a great video. Is there a way to write a VBA Code that would enable you to do the double click check marks in two separate column cells like column A cells and column B cells on the same spreadsheet? 1
@virilerex
@virilerex 3 жыл бұрын
check my answer pls!
Insert a Tick Symbol in Excel - 5 Examples
14:43
Computergaga
Рет қаралды 602 М.
Parenting hacks and gadgets against mosquitoes 🦟👶
00:21
Let's GLOW!
Рет қаралды 13 МЛН
طردت النملة من المنزل😡 ماذا فعل؟🥲
00:25
Cool Tool SHORTS Arabic
Рет қаралды 10 МЛН
SURPRISING Advanced Filter TRICK in Excel (You've Never Heard Of!)
5:59
Leila Gharani
Рет қаралды 1,2 МЛН
Using Checkboxes in Excel - Part 1
10:10
Technology for Teachers and Students
Рет қаралды 667 М.
SUPER EASY Excel Data Entry Form (NO VBA)
6:22
Leila Gharani
Рет қаралды 2 МЛН
Hide Zero Values in Excel | Make Cells Blank If the Value is 0
10:36
Excel DGET Function Solves 2 of Your VLOOKUP Problems
11:18
Leila Gharani
Рет қаралды 856 М.