Benks-1
Results
2
comments of
Benks-1
Hi all, this is what I have done: from binascii import hexlify def _handle_geometry(geometry_value): return f"0x{hexlify(geometry_value).decode().upper()}" and then on connection: .add_output_converter(-151, _handle_geometry)
Hi all! this is what I have done: ``` def get_dropdown(xl_range: Range)->list: # type: ignore validation = xl_range.api.Validation try: if validation.InCellDropdown and validation.Formula1: formula = validation.Formula1 if "!" in formula:...