IsEmpty एक वर्कशीट फ़ंक्शन है जिसका उपयोग यह जानने के लिए किया जाता है कि किसी दिए गए सेल संदर्भ या सेल की एक श्रृंखला खाली है या नहीं क्योंकि यह वर्कशीट फ़ंक्शन है इसलिए VBA में इसका उपयोग करने के लिए हम एप्लिकेशन का उपयोग करते हैं। इस फ़ंक्शन का उपयोग करने के लिए VBA में वर्कशीट विधि, यह फ़ंक्शन फ़ंक्शन की तार्किक सूचियों के अंतर्गत आता है और यदि संदर्भ खाली है, तो सही है।
VBA IsEmpty फ़ंक्शन
VBA IsEmpty एक तार्किक फ़ंक्शन है जो परीक्षण करता है कि चयनित खाली है या नहीं। चूंकि यह एक तार्किक कार्य है इसलिए यह बूलियन मूल्यों में परिणाम लौटाएगा अर्थात या तो TRUE या FALSE।
यदि चयनित सेल खाली है तो यह TRUE लौटाएगा या अन्यथा यह FALSE लौटाएगा।
इस लेख में, हम आपको VBA कोड का उपयोग करके कोशिकाओं की जांच करने के लिए VBA में "ISEMPTY" फ़ंक्शन का उपयोग करने का तरीका दिखाएंगे।

ISBAPTY फ़ंक्शन VBA में क्या करता है?
अक्सर रिक्त कोशिकाएं हमें कार्यपत्रक में कुशलता से काम करने के लिए निराश करती हैं। रिक्त कोशिकाओं को खोजना सबसे कठिन नहीं है, लेकिन यदि खाली कोशिकाएं उन्हें डेटा के बीच में छिपा रही हैं, तो उन्हें खोजने के लिए एक टोल लगता है।
एक्सेल में खाली कोशिकाओं को खोजने के लिए हमारे पास "ISBLANK" नामक फ़ंक्शन को कार्यपत्रक फ़ंक्शन है लेकिन VBA में इसे "ISEMPTY" कहा जाता है।
यह वर्कशीट फ़ंक्शन "ISBLANK" के समान है। अब “ISEMPTY” फ़ंक्शन के नीचे दिए गए सूत्र पर एक नज़र डालें।

जैसा कि हम उपरोक्त चित्र में देख सकते हैं कि यह बूलियन यानी TRUE या FALSE के रूप में परिणाम देता है।
VBA में ISEMPTY फ़ंक्शन के उदाहरण
VBA में IsEmpty के उदाहरण निम्न हैं।
उदाहरण 1
अब हम "ISEMPTY" का पहला व्यावहारिक उदाहरण देखेंगे। इसके लिए वर्कशीट की निचली छवि पर एक नज़र डालें।

अब हम इन सभी का परीक्षण करने के लिए एक्सेल VBA ISEMPTY फ़ंक्शन लागू करेंगे।
चरण 1: चर को बूलियन के रूप में परिभाषित करें ।
कोड:
उप IsEmpty_Example1 () डिम K अस बुलियन एंड सब

चरण 2: इस चर के लिए VBA ISEMPTY फ़ंक्शन के माध्यम से मान असाइन करें ।
कोड:
Sub IsEmpty_Example1 () Dim K As Boolean K = IsEmpty (अंतिम उप)

चरण 3: अभिव्यक्ति कुछ भी नहीं है लेकिन हम किस सेल का परीक्षण कर रहे हैं। अब हम सेल A1 सेल का परीक्षण कर रहे हैं ।
कोड:
Sub IsEmpty_Example1 () Dim K As Boolean K = IsEmpty (श्रेणी ("A1") मान।) उप उप।

चरण 4: VBA Msgbox में इस चर का मान दिखाएँ ।
कोड:
Sub IsEmpty_Example1() Dim K As Boolean K = IsEmpty(Range("A1").Value) MsgBox K End Sub

Run this code to check the result.

Since there is a value in the cell A1 we got the result as FALSE.
Now I will change the cell reference from A1 to A5.
Code:
Sub IsEmpty_Example1() Dim K As Boolean K = IsEmpty(Range("A5").Value) MsgBox K End Sub
Run this code to see the result.

We got the result as TRUE the referenced cell A5 is actually empty cell so we got the result as “TRUE”.
Now I will test the cell A8.
Code:
Sub IsEmpty_Example1() Dim K As Boolean K = IsEmpty(Range("A8").Value) MsgBox K End Sub
Run this code to see the result.

Oh!!! Hold on…
We got the result as FALSE even though there is no value in the cell A8.
Now the question is it an error result from the formula “ISEMPTY”?.
No… Absolutely No!!!
When I tried examining the cell A8 actually there is a space character inside the cell which is not easy to see with bare eyes.

So the conclusion is even Space is considered as a character in excel and VBA language.
Example #2 - Combination of VBA ISEMPTY with IF Condition
Actually, the real usage of the function “ISEMPTY” is admirable when we use it with other logical functions.
Especially when we use it with IF condition we can derive many useful results from it.

For this demonstration take a look at the below example.
In the Status column, if the “PF Status” column is empty, we need the value as “No Update,” and if there is any value, we need the values as “Collected Updates.”
Remember here we don’t need the default result of TRUE or FALSE. We need our own results here, to have our own results we need to use Excel VBA ISEMPTY with IF condition.
Step 1: Open IF condition.
Code:
Sub IsEmpty_Example2() If End Sub

Step 2: Inside the IF condition open ISEMPTY function.
Code:
Sub IsEmpty_Example2() If IsEmpty( End Sub

Step 3: The first logical test is cell B2 value is empty or not.
Code:
Sub IsEmpty_Example2() If IsEmpty(Range("B2").Value) Then End Sub

Step 4: If the logical test in excel vba is TRUE i.e., if the cell is empty, we need the result as “No Update” in cell C2.
Code:
Sub IsEmpty_Example2() If IsEmpty(Range("B2").Value) Then Range("C2").Value = "No Update" End Sub

Step 5: If the logical test is FALSE, we need the result in cell C2 as “Collected Updates.”
Code:
Sub IsEmpty_Example2() If IsEmpty(Range("B2").Value) Then Range("C2").Value = "No Update" Else Range("C2").Value = "Collects Updates" End If End Sub
Ok, we are done.
Run the code to get the result.

We got the result as “Collected Updates” because we have the non-empty cell in B2.
Now similarly apply the code for other cells to test.
Code:
Sub IsEmpty_Example2() If IsEmpty(Range("B2").Value) Then Range("C2").Value = "No Update" Else Range("C2").Value = "Collects Updates" End If If IsEmpty(Range("B3").Value) Then Range("C3").Value = "No Update" Else Range("C3").Value = "Collected Updates" End If If IsEmpty(Range("B4").Value) Then Range("C4").Value = "No Update" Else Range("C4").Value = "Collected Updates" End If End Sub

Run this code to have the results.

In cell C3 we got the result as “No Update” because there is no value in cell B3 i.e. Empty Cell. Since the logical formula returned TRUE we got the respective result.
Example #3 - Alternative to VBA ISEMPTY Function
हमारे पास ISEMPTY फ़ंक्शन का एक विकल्प है, एक्सेल VBA ISEMPTY फ़ंक्शन को लागू किए बिना हम वास्तव में सेल का परीक्षण कर सकते हैं।
एक उदाहरण के लिए, नीचे दिए गए कोड को देखें।
कोड:
उप IsEmpty_Example3 () यदि श्रेणी ("B2")। मान = "" तब श्रेणी ("2") "। मान =" कोई अद्यतन नहीं है "श्रेणी (" C2 ")। मान =" एकत्रित अपडेट "समाप्ति की समाप्ति उप उप।
कोड रेंज ("B2 ″)। मान =" की पंक्ति का अर्थ है कि सेल B2 सेल रिक्त के बराबर है या नहीं।
डबल कोट्स (“”) एक खाली सेल का प्रतिनिधित्व करता है या नहीं अगर खाली परिणाम TRUE है या फिर FALSE है।