Platform
Resources
Pricing
Sign in
Get started
Carbon Health
Workspace
Fork
Public
By
Eren Bali
Edited
Jan 3, 2024
1
Insert cell
Insert cell
workbook
=
FileAttachment
(
"NetSuiteData 2023.11 YTD.xlsx"
)
.
xlsx
(
)
Insert cell
rawData
=
workbook
.
sheet
(
0
,
{
headers
:
true
,
range
:
"A7:Q30000"
}
)
Insert cell
data
=
rawData
.
filter
(
(
row
)
=>
!
isEmpty
(
row
[
"GL Account"
]
)
||
!
isEmpty
(
row
[
"Financial Row"
]
)
)
Insert cell
function
isEmpty
(
str
)
{
return
!
str
||
(
typeof
str
==
"string"
&&
!
str
.
trim
(
)
)
;
}
Insert cell
Purpose-built for displays of data
Observable is your go-to platform for exploring data and creating expressive data visualizations. Use reactive JavaScript notebooks for prototyping and a collaborative canvas for visual data exploration and dashboard creation.
Try it for free
Learn more
Fork
View
Export
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
workbook
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
rawData
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
data
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
isEmpty
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML