ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   How do I convert cell contents that are Hex to binary? (https://www.excelbanter.com/excel-worksheet-functions/14244-how-do-i-convert-cell-contents-hex-binary.html)

KarenSue33

How do I convert cell contents that are Hex to binary?
 
I want to process a column at a time, so I need a main function.

Tom Ogilvy

You can loop through all the cells -

Sub ConvertColumnK()
On Error Resume Next
For Each cell In Range(Cells(1, 11), Cells(Rows.Count, 11))
cell.Value = CDbl("&H" & cell.Value)
Next
On Error GoTo 0
End Sub

In your post in Misc you said convert to Decimal. Hex2Bin converts to
binary.

--
Regards,
Tom Ogilvy


"KarenSue33" wrote in message
...
I want to process a column at a time, so I need a main function.





All times are GMT +1. The time now is 07:15 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com