취소
다음에 대한 결과 표시 
표시  만  | 다음에 대한 검색 
다음을 의미합니까? 
  • JMP will suspend normal business operations for our Winter Holiday beginning on Wednesday, Dec. 24, 2025, at 5:00 p.m. ET (2:00 p.m. ET for JMP Accounts Receivable).
    Regular business hours will resume at 9:00 a.m. EST on Friday, Jan. 2, 2026.
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.

Discussions

Solve problems, and share tips and tricks with other JMP users.
언어 선택 변환 막대 숨기기
LarsBirger
Level III

Is there a way to identify in a simple way if a cell is empty?

Is there a way to identify in a simple way if a cell is empty?

I have the following question:

 

In my JMP file there are two methods described. If method 1 is used there will be some text in that column. If method 2 is used the cell under method 1 will be empty and there will be som text under method 2. I know how to like in Excel filter data but I wonder if there is a formula that one can use to identify empty cells like in the example below.

 

Method 1      Method 2       Which method used

klkjkjj                                    Method 1

kjlljuun                                  Method 1

                     uoiuonj            Method 2

lkjljlk                                     Method 1

                     lkjljlkiiuuoi       Method 2

 

Would very much appreciate if someone has a solution to how I could write a formula in the column Which method used.

 

Sincerely yours

 

Lars Enochsson

 

2 채택된 솔루션

채택된 솔루션
uday_guntupalli
Level VIII

Re: Is there a way to identify in a simple way if a cell is empty?

txnelson
Super User

Re: Is there a way to identify in a simple way if a cell is empty?

The function to use is

     isMissing()

It can be used for both numeric and character columns.  So if you used the following to detect if the 2nd row of the column Method 2 is empty(missing)

     isMissing(:Method 2[2])

It would return a value of 1.  That is, the cell is empty.

Jim

원본 게시물의 솔루션 보기

2 응답 2
uday_guntupalli
Level VIII

Re: Is there a way to identify in a simple way if a cell is empty?

@LarsBirger,
  IsMissing()

Best
Uday
txnelson
Super User

Re: Is there a way to identify in a simple way if a cell is empty?

The function to use is

     isMissing()

It can be used for both numeric and character columns.  So if you used the following to detect if the 2nd row of the column Method 2 is empty(missing)

     isMissing(:Method 2[2])

It would return a value of 1.  That is, the cell is empty.

Jim

추천 글