Import excel sheet to Tableau but not shown the sheet title automatically

67 views Asked by At

When I import the Excel to Tableau, the title of the sheet is not shown automatically, it only shows F1, F2, F3, F4, etc.....

How can I deal with that despite manually rewriting the title?

I tried to modify the Excel sheet

2

There are 2 answers

0
Debayan On

Let me try with my dataset:

Here is what i get when i add my Excel to tableau :

columns are not showing

To fix this I simply clicked on the "Data Interpreter"

enter image description here

Hope this helps your scenario

0
vizyourdata On

From your first image it looks like you just need to delete the first row so that your header row is set as the first row. If you want to do this before you open the file in Tableau you can clean your dataset with Tableau Prep or Python/Pandas.

Python:

import pandas as pd
df = pd.read_excel('YOURFILE')
df = df.iloc[1:]
df.to_csv('OUTPUTFILENAME.csv')