I am running the latest Metabase from docker using the following command:
sudo docker run --platform linux/amd64 -d -p 3000:3000 --name metabase metabase/metabase-enterprise-head:latest
I have Grisbi (personal financial account manager) data that has been exported to CSV and imported to an Sqlite file which I am trying to access through Metabase. A sample entry looks like the following:
Transactions;"Account name";"Split";Date;Value date;"Cheques";"Financial year";"C/R";"Payee";Credit;Debit;Balance;"Category";"Sub-categories";"Budgetary lines";"Sub-budgetary lines";"Notes";"Voucher";"Reconciliation number";"Bank references";
...
8574;"Bank DB";"";23/02/2021;;"";"";"";"Reimbursements";2000.00;0;2000.0;"Misc. income";"Refunds";"";"";"Internet";"";"";"";
The numbers used commas which I removed using sed. I was able to set Date
as Creation Date
in the Data Model.
-
But, when I try to set
Credit
asCurrency
, I am not able to see the filter option to selectGreater than
when asking a question. Why is this so? -
There are values such as
0
,0.00
and100.00
in the credit column. Are these decimal values valid? -
When I try to visualize a line chart between Credit and Date, I get a blank page and an error that says, "Data includes missing dimension values". What does this mean?