felixz's picture
Update app.py
b1a0d5b
raw
history blame
423 Bytes
import streamlit as st
import pandas as pd
st.title('Excel File Uploader')
st.markdown('Upload an Excel file to view the data in a table.')
uploaded_file = st.file_uploader('Choose a file', type='xlsx')
if uploaded_file is not None:
data_caqh = pd.read_excel(uploaded_file, sheet_name='CAQH')
data_ndb = pd.read_excel(uploaded_file, sheet_name='NDB')
st.dataframe(data_caqh)
st.dataframe(data_ndb)