
Kashmira
Members-
Content Count
22 -
Joined
-
Last visited
-
Days Won
1
Kashmira last won the day on September 10 2020
Kashmira had the most liked content!
Community Reputation
1 NeutralAbout Kashmira
-
Rank
Member
Recent Profile Visitors
-
VBA Tutorial 13 : For next Loop
Kashmira commented on Saurabh Jain's blog entry in VBA Macros - Excel Programing's Tutorials
program done. It was nice. -
VBA Tutorial 12 : Logical Test If Else Statement
Kashmira commented on Saurabh Jain's blog entry in VBA Macros - Excel Programing's Tutorials
seen entire video. -
Hi I could do the assignment for this tutorial. Converting celsius to Fahrenheit. I tried to add With Range and it gives me error, object require. Pls advise where my code is wrong. Sub celcius() Dim celcius As Integer Dim Farenhiet As Integer celcius = InputBox("Give me temperature in Celcius") Range("B3").Value = celcius Farenhiet = (celcius * 1.8) + 32 With Range("B4").Value = Farenhiet .Font.Size = 11 .Font.Color = "2367" MsgBox "Farenhiet is" & " " & Farenhiet End With End
-
VBA Tutorial 9 : Variables and data Types
Kashmira commented on Saurabh Jain's file in VBA Macros - Excel Programing's Files
-
Tutorial 7 : Understanding VBA Macro recording
Kashmira commented on Saurabh Jain's blog entry in VBA Macros - Excel Programing's Tutorials
fantastic. looking forward to learn more. -
Tutorial 5 Working with Range Object
Kashmira commented on Saurabh Jain's blog entry in VBA Macros - Excel Programing's Tutorials
Done filling names in highlighted cell. It was interesting. -
Tutorial 5 Working with Range Object
Kashmira commented on Saurabh Jain's blog entry in VBA Macros - Excel Programing's Tutorials
The output cell is I10 -
Tutorial 4 : Walk through VBA Editor and your second program
Kashmira commented on Saurabh Jain's blog entry in VBA Macros - Excel Programing's Tutorials
Done my assignment. -
Tutorial 4 : Walk through VBA Editor and your second program
Kashmira commented on Saurabh Jain's blog entry in VBA Macros - Excel Programing's Tutorials
-
Tutorial 4 : Walk through VBA Editor and your second program
Kashmira commented on Saurabh Jain's blog entry in VBA Macros - Excel Programing's Tutorials
Excited to learn more and implement in my work. You are teaching it very well. -
Tutorial 3 : Understanding Object Model : Properties and Methods
Kashmira commented on Saurabh Jain's blog entry in VBA Macros - Excel Programing's Tutorials
labtop.color="silver" labtop.processor="ryzen" -
How can we do combining data from different worksheet in new worksheet within one file ? Is it possible.? I have attached the file. I want only coloured cells from worksheet - call , miss into follow up worksheet. combining data from differennt worksheet.xlsx
-
This is excellent tool for files in one folder. How can we do combining data from different worksheet in new worksheet within one file ? Is it possible.? I have attached the file. I want only coloured cells from worksheet - call , miss into follow up worksheet. combining data from differennt worksheet.xlsx
-
Tutorial 17 What if analysis
Kashmira commented on Saurabh Jain's blog entry in BI & Analytics with Excel's Excel Tutorials
hello, I was practicing scenario one - where change cell is unit price. Had a question. If I change the value in one of the unit price, doesnt it change the summary table by itself? -
Thanks. Inused this and it worked very welll. Thanks Kashmira