Forum Discussion
Anonymous
4 years agoNot applicable
Custom Column extracting file type
I know how to create a custom column, but i would need a formula that extracts the file type (extensions). I know of the LEFT command, but some file types are .PDF, 3 characters, while others are .DO...
- 4 years ago
If you are in Power Query use the split column by delimiter option or extract option
amitchandak
4 years agoSuper User
Anonymous ,
extension = right( [Column], len([column]) -search(".",[column],,0) )
file= left( [Column],search(".",[column],,0)-1 )
Anonymous
4 years agoNot applicable
Thanks for the response, however, i am seeing this when i try to copy it over.
- PaulDBrown4 years agoCommunity Champion
If you are in Power Query use the split column by delimiter option or extract option