Posts by Antônio Medeiros • 111 points
2 posts
-
1
votes2
answers5307
viewsA: How to disable checkbox without using disabled?
You can creatively resolve this using a hidden field. Suppose you want to disable the following checkbox: <input type="checkbox" id="chkIdoso" name="chkIdoso" checked /> So you can do: <!--…
-
0
votes5
answers19696
viewsA: Removing the last name of a cell
Inspired by the reply of Denis Caixeta, I wrote a function: Function UltimoNome(Nome As Variant) As String For Posicao = (Len(Nome) - 1) To 0 Step -1 If (Mid(Nome, Posicao, 1) = " ") Then UltimoNome…
excelanswered Antônio Medeiros 111