EXCEL'N CRICKET (Jithin R Trivandrum)
EXCEL'N CRICKET (Jithin R Trivandrum)
  • 93
  • 237 481

วีดีโอ

Kings Premier League | Neyyattinkara | Jithin Trivandrum| Batting
มุมมอง 2752 ปีที่แล้ว
Video from Web Streaming Kings Premier League - Team Flames Titans
Jithin R| Trivandrum|Strong love 💞
มุมมอง 4402 ปีที่แล้ว
Cricket is always my passion 💗 Edits in VITA
Gayle Kuttappan vs Jithin R Trivandrum|Future Cup 2020
มุมมอง 3.4K4 ปีที่แล้ว
Effort 👍
VBA Insert Columns
มุมมอง 1464 ปีที่แล้ว
Insert Columns Sub Insertcolumn() sheets("Master").Columns(5).Select For x = 1 To 3 ActiveCell.EntireColumn.Insert Next End Sub
Insert Rows using VBA
มุมมอง 634 ปีที่แล้ว
Insert rows in excel using VBA Private Sub CommandButton1_Click() i = sheets("Master").Range("E" & Rows.Count).End(xlUp).Row ActiveSheet.Range("E" & i).Offset(1, 0).Select ActiveCell.EntireRow.Insert End Sub
FILTER Function in Excel (Really Helpful we can choose columns and We can SORT data)
มุมมอง 534 ปีที่แล้ว
FILTER FUNCTION is one of the most helpful function now included in excel we can simply do it using a small formula, we can choose columns, and also SORT the dataset. =SORT(FILTER(FILTER(A1:G100,A1:A100=I1),{1,1,1,1,0,1,0}),4)
Excel VBA INSTR Function
มุมมอง 3234 ปีที่แล้ว
Using this simple VBA code we cab find any string available in a sentence. Sub Findstr() sheets("Master").Range("B2:B100").ClearContents For i = 2 To sheets("Master").Range("A" & Rows.Count).End(xlUp).Row If InStr(1, sheets("Master").Range("A" & i), sheets("Master").Range("F1").Value) 'Use greater than symbol' 0 Then sheets("Master").Range("B" & i).Value = "Yes" End If Next End Sub
Excel VBA clear all Text box values using For Loop
มุมมอง 1.8K4 ปีที่แล้ว
Using this simple For Loop we can easily clear the values from all textboxes in a userform. Private Sub CommandButton1_Click() Dim Clr as control For Each Clr In Me.Controls If TyepName(Clr) = "TextBox" Then Clr.Value = "" End If Next End Sub()
USERFORM EXCEL VBA
มุมมอง 144 ปีที่แล้ว
Userform using Excel VBA, We can alter this userform as per our requirement, In this a database functionalities included as well as this will keep the records in the worksheet. Private Sub CommandButton1_Click() i = sheets("Master").Range("A" & Rows.Count).End(xlUp).Offset(1, 0).Row sheets("Master").Range("A" & i).Value = Me.TextBox1.Value sheets("Master").Range("B" & i).Value = Me.TextBox2.Val...
Excel VBA ListBox Functions with Examples
มุมมอง 634 ปีที่แล้ว
Excel VBA ListBox Functions. How to input our items inside a list box and how to display the selected items in our sheets. Private Sub ListBox1_KeyDown(ByVal KeyCode As MSForms.ReturnInteger, ByVal Shift As Integer) If KeyCode = 13 Then For i = 0 To ListBox1.ListCount - 1 x = sheets("Master").Range("C" & Rows.Count).End(xlUp).Row 1 If Me.ListBox1.Selected(i) Then sheets("Master").Range("C" & x)...
5 ways to list items in a ComboBox Using VBA
มุมมอง 434 ปีที่แล้ว
When we are suing a combobox inside a userform or in our workbook, we are adding our list of items as drop down , in this video there are 5 ways that we can make our drop downs inside a combobox. Me.ComboBox1.RowSource = "Items" Using name range function 'OR Me.ComboBox1.AddItem "Mobiles" 'OR Me.ComboBox1.AddItem "Televisions" Me.ComboBox1.AddItem "Refrigerators" Me.ComboBox1.AddItem "ACs" 'OR ...
Agasthyakoodam 2020 Trekking
มุมมอง 864 ปีที่แล้ว
One of the toughest trekking point, Agasthyamala, Located in Bonacaud, One of the wonderful place which is having different natural atmosphere and vibe.
EXCEL NEW FEATURES XLOOKUP and RANDARRAY
มุมมอง 344 ปีที่แล้ว
Describing new excel function XLOOKUP and RANDARRAY using vrious examples. XLOOKUP function is a total sum of below functions; VLOOKUP HLOOKUP MATCH SEARCH IFERROR
VBA CONSOLIDATE ALL DATA FROM DIFFERENT EXCEL FILES FROM A FOLDER
มุมมอง 1344 ปีที่แล้ว
This simple code helps us to consolidate all data from the excel files inside a specific folder. I am giving sum of my previous videos End screens with this video. Sub Test() Application.DisplayAlerts = False Application.ScreenUpdating = False On Error Resume Next sheets("Master").Columns("A:G").Delete Dim FolderPath As String, Filename As String, ExcelFileName As Workbook FolderPath = "C:\User...
Excel VBA Consolidate data from many worksheets into Master Sheet
มุมมอง 934 ปีที่แล้ว
Excel VBA Consolidate data from many worksheets into Master Sheet
Excel VBA CONVERT ALL PDF FILES TO EXCEL SHEETS
มุมมอง 6K4 ปีที่แล้ว
Excel VBA CONVERT ALL PDF FILES TO EXCEL SHEETS
Excel VBA Letter Cases (Using STRCONV)
มุมมอง 3024 ปีที่แล้ว
Excel VBA Letter Cases (Using STRCONV)
Excel VBA Logical Operators AND & OR
มุมมอง 1244 ปีที่แล้ว
Excel VBA Logical Operators AND & OR
End Screen
มุมมอง 464 ปีที่แล้ว
End Screen
Excel VBA Add Workbook and Add Sheets
มุมมอง 344 ปีที่แล้ว
Excel VBA Add Workbook and Add Sheets
Excel VBA Add and Delete Sheets
มุมมอง 664 ปีที่แล้ว
Excel VBA Add and Delete Sheets
Excel VBA Display All Sheet Names and Count of sheets
มุมมอง 444 ปีที่แล้ว
Excel VBA Display All Sheet Names and Count of sheets
Time and Date Excel VBA
มุมมอง 424 ปีที่แล้ว
Time and Date Excel VBA
IF FUNCTION VBA AND EXCEL (Multiple if condition)
มุมมอง 584 ปีที่แล้ว
IF FUNCTION VBA AND EXCEL (Multiple if condition)
VBA COPY AND PASTE EXCEL DATA
มุมมอง 224 ปีที่แล้ว
VBA COPY AND PASTE EXCEL DATA
VBA Delete Blank Rows as well as Rows With Specific Value
มุมมอง 294 ปีที่แล้ว
VBA Delete Blank Rows as well as Rows With Specific Value
VBA HIGHLIGHT CELL BASED ON CELL VALUE
มุมมอง 604 ปีที่แล้ว
VBA HIGHLIGHT CELL BASED ON CELL VALUE
SUMIFS VBA and EXCEL FORMULA
มุมมอง 3824 ปีที่แล้ว
SUMIFS VBA and EXCEL FORMULA
Index Match Function Using Excel Formula and VBA
มุมมอง 6184 ปีที่แล้ว
Index Match Function Using Excel Formula and VBA

ความคิดเห็น

  • @Abby-j2u
    @Abby-j2u 20 วันที่ผ่านมา

    sir , how i write = INDEX(G4:AN106,MATCH(A117,A4:A106,0),MATCH(A113,G3:AN3,0)) IN VBA tHANK YOU

  • @vipinav7761
    @vipinav7761 ปีที่แล้ว

    🔥🔥🔥

  • @shanmugarajun8798
    @shanmugarajun8798 ปีที่แล้ว

    How to apply instr function with multiple condition

  • @pastormartinsempai6371
    @pastormartinsempai6371 ปีที่แล้ว

    Jithin chetto ippo active alle?? Muttathara turfil (ubc tournament)vechan last kandath🙂🙂🙂🙂

  • @juliewambua4577
    @juliewambua4577 2 ปีที่แล้ว

    Just want to say thank you. This worked for me

  • @refmontjhandra9800
    @refmontjhandra9800 2 ปีที่แล้ว

    Didn't Work

  • @bharathbharath2362
    @bharathbharath2362 2 ปีที่แล้ว

    hi sir, thanks for sharing the knolwedge, also please help to take the sum(range of "A & irow-2 :A"& irow), as this is not working in VBA

    • @JithinRTrivandrum
      @JithinRTrivandrum 2 ปีที่แล้ว

      Specify your requirement, Happy to help 😎

  • @venkatiyer7459
    @venkatiyer7459 2 ปีที่แล้ว

    My macro is not going beyond "Please fill required fields' Please advice

  • @DJjeffer92
    @DJjeffer92 2 ปีที่แล้ว

    How can I use hiragana or Katana with this formula. Thank you.

  • @aboobackersidheeque6856
    @aboobackersidheeque6856 2 ปีที่แล้ว

    e pravshyam evar okke evide ayirunnu

  • @ameenhashim8874
    @ameenhashim8874 2 ปีที่แล้ว

    ☄️

  • @Rahithachu
    @Rahithachu 2 ปีที่แล้ว

    Sabari attingal❤❤❤❤❤❤❤

  • @sreerajs8914
    @sreerajs8914 2 ปีที่แล้ว

    Sabari annan🔥🔥

  • @mithunv7906
    @mithunv7906 2 ปีที่แล้ว

    Sabari Attingal.. 🔥❤️

  • @Ponnoo
    @Ponnoo 2 ปีที่แล้ว

    Super super

  • @abhilashsm2327
    @abhilashsm2327 2 ปีที่แล้ว

    🤩🤩Trivandrum Express Jithin🤩

  • @naseemnas0482
    @naseemnas0482 2 ปีที่แล้ว

    Superb batting 🔥🔥🔥

  • @anzilsr9821
    @anzilsr9821 2 ปีที่แล้ว

    🔥🔥

  • @afsalafsal9341
    @afsalafsal9341 2 ปีที่แล้ว

    😳

  • @ahanikagupta3650
    @ahanikagupta3650 2 ปีที่แล้ว

    Excellent.Make a video of autudownloading pdf from a website by putting I'd pwdvof the web page then go inside the pagge put date then download the pdf file

  • @ttvaisakh
    @ttvaisakh 3 ปีที่แล้ว

    ❤️❤️❤️❤️❤️❤️

  • @bharathipuduru4290
    @bharathipuduru4290 3 ปีที่แล้ว

    Unable to follow

  • @bharathipuduru4290
    @bharathipuduru4290 3 ปีที่แล้ว

    No audio🔊

  • @bharathipuduru4290
    @bharathipuduru4290 3 ปีที่แล้ว

    Text not visible

  • @vinodps1978
    @vinodps1978 3 ปีที่แล้ว

    not working

  • @cricketfever2480
    @cricketfever2480 3 ปีที่แล้ว

    th-cam.com/video/r_b_RJ6SksI/w-d-xo.html

  • @cricketfever2480
    @cricketfever2480 3 ปีที่แล้ว

    th-cam.com/video/r_b_RJ6SksI/w-d-xo.html

  • @timothydeclercq387
    @timothydeclercq387 3 ปีที่แล้ว

    top, macheert heel goed!!

  • @celestinleons4632
    @celestinleons4632 3 ปีที่แล้ว

    Kandata thannam pennam entena edunnata...sanju 90 age vara practice chayyum indian teamel varella ..age kuranja orupadu responsibility olla players indiaka onda ..sanju practice nerthanda chaythu konda eriku...oru prayojanavum ella...varuta nattukara konda parayikkan oru avenja avatharam...evana vara pane ella...

    • @crispyuser9883
      @crispyuser9883 2 ปีที่แล้ว

      Aha enitt....😆

    • @Sadik23344
      @Sadik23344 2 หลายเดือนก่อน

      Bro u still alive hard work will pay off once brother u dosnt know it bcuase ur not trying for anything

  • @nitishreddy1726
    @nitishreddy1726 4 ปีที่แล้ว

    Nice informative video

  • @shibin9764
    @shibin9764 4 ปีที่แล้ว

    Ithentha sambavam

  • @kukkukukku007
    @kukkukukku007 4 ปีที่แล้ว

    Ningalu oru sambhavam aanu

  • @remyar3435
    @remyar3435 4 ปีที่แล้ว

    E groupil sabari mental ana

  • @remyar3435
    @remyar3435 4 ปีที่แล้ว

    Sabari avan mental ana

  • @vipinfriend4ever944
    @vipinfriend4ever944 4 ปีที่แล้ว

    Silent killer😄 JRT

  • @anzilsr9821
    @anzilsr9821 4 ปีที่แล้ว

    🔥

  • @keralatenniscricketers3178
    @keralatenniscricketers3178 4 ปีที่แล้ว

    ഇത്രയും അഗ്രസീവ് ആയി ആഘോഷിക്കുന്നത് ഞാൻ ഇതുവരെ കണ്ടിട്ടില്ല 😇😇👍🏻

  • @akhilkk725
    @akhilkk725 4 ปีที่แล้ว

    🔥കിടിലൻ 🔥

  • @akhilss803
    @akhilss803 4 ปีที่แล้ว

    🔥🔥

  • @jamesrodriguez9626
    @jamesrodriguez9626 4 ปีที่แล้ว

    TH-cam thurannal full short videos jithin Vs Rohit Vs kuttapan Pinne vere Kure batsmans .. .. Jithin s yorker il muttukuthunna e players video koode idu athum kode kaanan oru koothi

  • @sajiths2299
    @sajiths2299 4 ปีที่แล้ว

    Tait Jithin

  • @sarathkrishna4036
    @sarathkrishna4036 4 ปีที่แล้ว

    ഇതൊക്കെയാണ് എറി 😍

  • @Johnjo007
    @Johnjo007 4 ปีที่แล้ว

    Soft tennis or hard tennis

  • @Johnjo007
    @Johnjo007 4 ปีที่แล้ว

    6 overs il eatra players kalikkum?

  • @Vishnu_Prasannan
    @Vishnu_Prasannan 4 ปีที่แล้ว

    Poli

  • @ajeeshajus9105
    @ajeeshajus9105 4 ปีที่แล้ว

    ❤️❤️❤️❤️

  • @rjhblog9135
    @rjhblog9135 4 ปีที่แล้ว

    Nice bowling

    • @JithinRTrivandrum
      @JithinRTrivandrum 4 ปีที่แล้ว

      Yeah right , Tennis Ball ayond paranjathanu...Sorry

    • @rjhblog9135
      @rjhblog9135 4 ปีที่แล้ว

      @@JithinRTrivandrum chummaa parajathaa brooo Nice bowlingg

    • @antonyalan7089
      @antonyalan7089 4 ปีที่แล้ว

      @@JithinRTrivandrum നൈസ്

  • @swapnaks4938
    @swapnaks4938 4 ปีที่แล้ว

    Thank so much

  • @ajithrajendran8066
    @ajithrajendran8066 4 ปีที่แล้ว

    E kali ude link undo bro??

  • @dhanyanair4400
    @dhanyanair4400 4 ปีที่แล้ว

    👍