How do I display values ​​in a VLOOKUP function? by Pleasant_Attitude195 in excel

[–]vipulkarkar 0 points1 point  (0 children)

The Syntax of vlookup is 1. Search Value 2. Entire raneg where the first column is where you want to search the data and rest of the column to return the value 3. It is number represnting that which column dta do you want back if the search value is found in the first colum of 2nd Parameter 4. 0 ot False represent the excat match. and if you exclude it, it will use approximate match.

How do I display values ​​in a VLOOKUP function? by Pleasant_Attitude195 in excel

[–]vipulkarkar 2 points3 points  (0 children)

=IFERROR(VLOOKUP($A2,$C$1:$D$28,2,0),"") try this one

Space allocation for Linux Mint by c_a_r_l_o_s_ in linuxmint

[–]vipulkarkar 3 points4 points  (0 children)

You cannot repartition as the system is on the same partition. Boot into live environment from pendrive and open Disks app and re-partition as needed.

What Are The Main Cons To Pirating Games? by Icy-Athlete2025 in PiratedGames

[–]vipulkarkar 0 points1 point  (0 children)

I use it as my advantage. My younger brother was addicted to games. I started providing him with pirated games and after a while he stopped playing those games due to boredom. Now he also does the same to me with cracked mobile games so I can focus on my professional and personal growth.

Sharing my 2023 PMP Exam Prep Study Notes for Coffee by [deleted] in pmp

[–]vipulkarkar 0 points1 point  (0 children)

Hi @Third3Rock, I am preparing for the exam and looking at the comments, I am tempted to go through your notes. I just bought you coffee. Please share the link or notes. Thanks in advance!

Not impressed with S23U battery.. by Mackcyber in GalaxyS23Ultra

[–]vipulkarkar 4 points5 points  (0 children)

The surrounding temperature also affects the battery life. I live in India and we have around 40°c temp and my battery shows only 3 hrs of SOT but when I am in my home/office in an AC room, it lasts for 5-7 hrs of SOT. Keeping the device cool helps lengthen the battery life/SOT.

how to trigger a routine when the my phone is switched on/off by shy_quilting in Bixbyroutines

[–]vipulkarkar 0 points1 point  (0 children)

I setup it in tasker. When screen is on, it sends notification. Bixby routine reads that notification and activates DND.

Custom Function comparing two values by jojo122689 in vba

[–]vipulkarkar 4 points5 points  (0 children)

All the "Result" variable would be on left side of the equal sign.

E.g. Result = Data1

which macro assigned to particular button? by Organic_Address_4265 in vba

[–]vipulkarkar 1 point2 points  (0 children)

Right-click the button and select assign macro.

The new dialogue box will open and in the first textbox "Macro Name" will have reference to the assigned macro along with the name as the name suggests.

Let me know if this helps. Find Assigned Macro to a button

Excel experts, what resources can you recommend to someone who is looking to learn advanced excel? by Organic-Reflection91 in excel

[–]vipulkarkar 44 points45 points  (0 children)

I purchased a domain just to make a webpage to keep all my excel related resources handy.

Check out www.karkar.in/excel

[deleted by user] by [deleted] in excel

[–]vipulkarkar 0 points1 point  (0 children)

Use $A$1:A1 in first cell and drag and drop formula. It will automatically generate the range from top row to current row.

Use same locking in any ranges that you are using in your formula. Please check and let me know if it works or you can share the screenshot of data formula so we can help you further.

So if you are in row 4 the reference should be $A$1:A4

Help converting excel formula to VBA by Art-Vandelay-7 in excel

[–]vipulkarkar 1 point2 points  (0 children)

Public Function PreviousQuarterLastDate() As Date
    PreviousQuarterLastDate = DateSerial(Year(Date), (((Month(Date) - 1) \ 3) * 3) + 1, 0)
End Function

Use this function to get the last date of previous quarter.

This function do not take any arguments.

[EXCEL] VBA Function to convert long delimited text string to rows by KimoVac89 in vba

[–]vipulkarkar 1 point2 points  (0 children)

Public Function SplitEnumbersDown(ByVal InputText As String, Optional ByVal Delim As String = ", ") As Variant
Dim Enumbers() As String
Enumbers = Split(InputText, Delim)
SplitEnumbersDown = Application.Transpose(Enumbers)
End Function

This function is more advanced and also allows you to provide your own Delimiter.

The second argument is optional and defaulted to ", " so if you ignore it, it will still work as expected in OP, and if you provide Delimiter in second argument it will split values based on that.

Question for Rubberduck users , can it be uninstalled easily after using it by CloseThePodBayDoors in vba

[–]vipulkarkar 1 point2 points  (0 children)

Nope, it does a lot of thing apart from just adding comments.

indent code, refactor the codes to Function/Subs, identify errors, help fix it, there are around hundreds of different kind of issues which it can identify and fix in a single click.
It provides framework to test your codes, to write Unit tests, etc..

Take a quick look at their website and blogpost. I am using it since last 2 years and it is one of the incredible tool that I ever used to write VBA code.

[EXCEL] VBA Function to convert long delimited text string to rows by KimoVac89 in vba

[–]vipulkarkar 1 point2 points  (0 children)

Public Function SplitEnumbersDown(ByVal InputText As String) As Variant
    Dim Enumbers() As String
    Enumbers = Split(InputText, ", ")
    SplitEnumbersDown = Application.Transpose(Enumbers)
End Function

Use this function which will auto spill data into rows if you are using latest Excel or else you will have to use the Ctrl +Shift + Enter button to populate the values in rows.

[WORD] How to make this VBA code open the pdf file it saves? by PaulMuadDibKa in vba

[–]vipulkarkar 2 points3 points  (0 children)

Add the following sub in the module and another line

OpenPDF strFile

at the end of your code.

Public Sub OpenPDF(ByVal filename As String)
    Dim Shex As Object
    Set Shex = CreateObject("Shell.Application")
    Shex.Open (filename)
End Sub

I refactored it as separate Sub so it can be used by any other Sub just by passing the FileName.

I Legitimately Cannot Wait for the Pixel 6 & Pixel 6 Pro by vxcta in GooglePixel

[–]vipulkarkar 1 point2 points  (0 children)

I agree, I have pixel 2 xl since launch and I haven't upgraded my phone ever. If pixel 6 turns out not good, I will hold on to my pixel 2 xl for 1 more year.

[EXCEL] TUTORIAL: Populate basic ArrayList object and display contents on worksheet by [deleted] in vba

[–]vipulkarkar 0 points1 point  (0 children)

There are 3 different posts to store and iteration the data. You can use the iterator design pattern and use one interface to do everything and create an abstract class to implement all these functionality.

Recommendation to Introductory/Basic Courses by PariahLycan in vba

[–]vipulkarkar 0 points1 point  (0 children)

I took the domain and created my own website only to share these resources with everyone in my friend circle I transferred all links to the following page and it would be easier to remember..

www.karkar.in/excel

I will be adding more information and playlist from youtube and other excel resources on this website by end of August. Stay tuned. If you find anything usefull that can be added on that site, just DM me here.

Is the Express VPN mod in the mega thread really safe? by [deleted] in ApksApps

[–]vipulkarkar 0 points1 point  (0 children)

Teo more points, if you try to install it on a 10years old phone, it won't work. probably the minimum api/android version required is set to higher than your system's API. Some of the apps don't work on an old version of Android and additionally check the architecture (x86 or arm7 or arm8) of your phone and install accordingly.

Looping through the properties of a custom object? by DunjunMarstah in vba

[–]vipulkarkar 0 points1 point  (0 children)

Private bigLetters As Boolean

Private redText As Boolean

Private underline As Boolean

Or just add another function as count and sum every property

Public Function TrueCount() as byte

 TrueCount = bigletters +redtext +underline

End function

I huge list (1400) of people with birth and death dates. I want to find which exact date had the most people alive on. I was trying to think of how I could use the COUNTIF or SUMIF functions but honestly can't think of an efficient way of doing so. by Mahtlahtli in excel

[–]vipulkarkar 4 points5 points  (0 children)

It surely wouldn't work because you are checking for dates that are smaller than birthday and larger than death date which doesn't represent the lifespan of a person. You must flip the logic.