Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Как сделать автоматический поиск одной ячейки в диапазоне других ячеек?
Суть в том что бы искало в масиве столбца A, каждую яцейку столбца В, а результат выдавало как ЛОЖЬ или ИСТИНА в столбце C |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
On Apr 5, 9:06 am, viki wrote:
? A, , C Can you ask that in English for the rest of us, please? Chris |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
"viki" wrote in message
... ??? ??????? ?????????????? ????? ????? ?????? ? ????????? ?????? ?????? ???? ? ??? ??? ?? ?????? ? ?????? ??????? A, ?????? ?????? ??????? ?, ? ????????? ???????? ??? ???? ??? ?????? ? ??????? C BabelFish says: The search for one cell in the range of the cells How to make an automatic search for one cell in the range of other cells? Essence in the fact that would search for into masive of column A, each yatseyku of column v, and result it issued as LIE or TRUTH in column C I wonder what "yatseyku" means? Public Sub search() Dim i As Integer Dim a As Range With Sheet1 Set a = .Range("A1:A" & .Range("A1").End(xlDown).Row) For i = 1 To .Range("B1").End(xlDown).Row .Range("C" & i) = Not a.Find(.Range("B" & i), , xlValues, xlWhole) Is Nothing Next End With End Sub -- roger |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
On Apr 6, 4:27 am, "roger" wrote:
"viki" wrote in message ... ??? ??????? ?????????????? ????? ????? ?????? ? ????????? ?????? ?????? ???? ? ??? ??? ?? ?????? ? ?????? ??????? A, ?????? ?????? ??????? ?, ? ????????? ???????? ??? ???? ??? ?????? ? ??????? C BabelFish says: The search for one cell in the range of the cells How to make an automatic search for one cell in the range of other cells? Essence in the fact that would search for into masive of column A, each yatseyku of column v, and result it issued as LIE or TRUTH in column C I wonder what "yatseyku" means? Public Sub search() Dim i As Integer Dim a As Range With Sheet1 Set a = .Range("A1:A" & .Range("A1").End(xlDown).Row) For i = 1 To .Range("B1").End(xlDown).Row .Range("C" & i) = Not a.Find(.Range("B" & i), , xlValues, xlWhole) Is Nothing Next End With End Sub -- roger Wow, that's freakishly dedicated answering :) C |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|