microsoft / python-in-excel

Python in Microsoft Excel
MIT License
517 stars 34 forks source link

Add an easy way to get the Values of a 1d array horizontally #49

Open fzumstein opened 9 months ago

fzumstein commented 9 months ago
arr = pd.Series([1, 2, 3])
[arr]

Which I don't think is very intuitive? Maybe add something like the following?

excel.transpose(arr)
keyur32 commented 9 months ago

Thanks! We'll evaluate adding this as a future helper function.