felixz commited on
Commit
b1a0d5b
1 Parent(s): e77d839

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -2
app.py CHANGED
@@ -7,6 +7,10 @@ st.markdown('Upload an Excel file to view the data in a table.')
7
 
8
  uploaded_file = st.file_uploader('Choose a file', type='xlsx')
9
 
 
10
  if uploaded_file is not None:
11
- data = pd.read_excel(uploaded_file)
12
- st.dataframe(data)
 
 
 
 
7
 
8
  uploaded_file = st.file_uploader('Choose a file', type='xlsx')
9
 
10
+
11
  if uploaded_file is not None:
12
+ data_caqh = pd.read_excel(uploaded_file, sheet_name='CAQH')
13
+ data_ndb = pd.read_excel(uploaded_file, sheet_name='NDB')
14
+
15
+ st.dataframe(data_caqh)
16
+ st.dataframe(data_ndb)