Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
mahitham
Creator II
Creator II

Function help

Hi Experts,

I have a field File Name like below. Please help me to remove .xlsx from File Name field.

File Name

ABM.xlsx

Approved - CDCP - IRD.xlsx

ABC Insight_Tagging v0.4 working.xlsx

Expected File Name

ABM

Approved - CDCP - IRD

ABC Insight_Tagging v0.4 working

Thanks in advance.

1 Solution

Accepted Solutions
Kashyap_R
Partner - Specialist
Partner - Specialist

Hi

Try this

Replace(FileNAme,'.xlsx','')

Thanks

Thanks and Regards
Kashyap.R

View solution in original post

2 Replies
Kashyap_R
Partner - Specialist
Partner - Specialist

Hi

Try this

Replace(FileNAme,'.xlsx','')

Thanks

Thanks and Regards
Kashyap.R
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

Mid(filename, 1, index(filename, '.', -1) -1)

-Rob