Import excel data on Rstudio

Hi everyone,
I am new in the data analysis field and I need help to grow. I am trying to import data in excel file on my R studio and it is not easy for me.
I have tried to install XLconnect and DataXL and still unable to import my data in excel file.
Please help me!
Thanks very much.

Hi @abdelazizyasser, try with this way:

For load and excel file

install.packages('readxl')
library(readxl)

data<- read_excel('you_file_path') 
View(data) # show the data