-4

I've got a job which I am not allowed to use SQL/BigQuery to analyze data, because of the compliance/data security, so I must download data from a dashboard.

In the dashboard I just can download in a TSV file. When I open it in an Excel spreadsheet, all numbers are in a strange format.

For example, for Y/Y15 in below image, the Y/Y15 is a 217% percentage number, but how can I convert it to percentage format or even to a number format?

I've tried the formula:

=VALUE(SUBSTITUTE(tbl[@[Y/Y5]];".";","))/100000000000000000

This can solve just for extensive numbers. The problem is sometimes this number will be like W/W14, which means the percentage will be smaller and the division /1000... will not work, because I am trying to automate these steps into Excel, once I am not allowed to use BigQuery.

Also I've tried to save the file as xls and reopen it, but with no changes in format numbers. And also I've tried to find something in other sources, but with no success.

enter image description here

1
  • 1
    You need to show us a small sample of the TSV file and any relevant nationality settings. What you describe looks like some local convention of . vs , in larger numbers. You wouldn't believe how many silly ways of writing out big numbers there are globally. You can probably tell the data source not to insert such distracting fluff. Commented Jun 30 at 19:07

1 Answer 1

0

You need to import data rather than open the file:

enter image description here

Then transform data changing the locale:

enter image description here

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.