https://www.excelforum.com/excel-genera ... verse.htmlPublic Function binverse(wCell As String) As String
Dim x, y As Integer
Dim nResult As String
nResult = vbNullString
x = Len(wCell)
For y = 1 To x
If Mid(wCell, y, 1) = "1" Then
nResult = nResult & "0"
Else
nResult = nResult & "1"
End If
Next
binverse = nResult
End Function
Аааааааааа! Это же необратимые повреждения мозга! Срочно нужна лоботомия! Микрософт нужно судить за предумышленное убийство!