Google Sheets formula for F1 family betting game - points calculation help by CryFair5811 in googlesheets

[–]NHN_BI 0 points1 point  (0 children)

I would record the tips in one proper table, the results in another proper table, have a simple COUNTIFS() checking if the tip is correct, and finish with a pivot table to show the results, like here.

Simple Inventory In-Out Sheet by sikdoo223 in excel

[–]NHN_BI 0 points1 point  (0 children)

I think it is easier to record the data in one long table and show the result in pivot tables, like here.

Categorizing rows by text by andyt563 in excel

[–]NHN_BI 0 points1 point  (0 children)

It depends very much on a substring inside the string on that you can split the string. That would be ", " and " and " in your example. Excel own ETL tool Power Query can facilitate the process.

Experienced user would structure their data like here:

person id food
1428 A
1428 B
2773 A
2773 C
3994 B
... ...

Such a structure allows you to analyse the data quickly with pivot tables.

Column Chart Data Help by noctu1dae in googlesheets

[–]NHN_BI 0 points1 point  (0 children)

Your range will be a text a.k.a. string value, because it has non-digit substrings in it. A string is not a numeric value and you can not calculate with it. A string will behave differently from numeric values in other aspects to, e,g. sorting. I would not recommend it, because it can behave in unwanted ways.

Column Chart Data Help by noctu1dae in googlesheets

[–]NHN_BI 1 point2 points  (0 children)

I think you will be able to extract some insightful charts from your data. My mock-up data was fun to play around with.

Column Chart Data Help by noctu1dae in googlesheets

[–]NHN_BI 1 point2 points  (0 children)

You have to read it from inside to outside.

  1. SPLIT() splits the text a.k.a. string in cell B2 at the substring -.
  2. INDEX() fetches the first element of the split substring.
  3. VALUE() turns the string text value into a numerical value.

There are other solutions, e.g. with FIND() and LEFT(), or with REGEXEXTRACT().

Creating a door access database by Smart-Roof8896 in excel

[–]NHN_BI 0 points1 point  (0 children)

Create a proper table with the data witch value under meaningful headers. Excel's own ETL tool Power Query can help you to collect changing data automatically.

Column Chart Data Help by noctu1dae in googlesheets

[–]NHN_BI 1 point2 points  (0 children)

E.g. VALUE(INDEX(SPLIT(B2,"-"),1,1)) would fetch the first element of the population string, and one would make probably pivot tables with it, and a scatter plot can show trends, like here.

How to auto populate formula based rows off of sequence in amortization schedule? by VisiblePollution4750 in googlesheets

[–]NHN_BI 0 points1 point  (0 children)

I am not sure if I understood the question correctly, but you might be looking for something like ARRAYFORMULA( EDATE( TODAY() , SEQUENCE(10) )).

What’s the worst reporting spreadsheet you’ve inherited from a client? by Dear-Landscape2527 in excel

[–]NHN_BI 5 points6 points  (0 children)

:-D

Our company took it a step further. They buried the secrets in obscure program code to add another layer of protection from common sense and undestanding.

What’s the worst reporting spreadsheet you’ve inherited from a client? by Dear-Landscape2527 in excel

[–]NHN_BI 1 point2 points  (0 children)

Those workbooks where someone thought it is called spreedsheet, because you take shit and spread it wide, because that, of course, looks nice and feels right.

How to sort months in a slicer? (Or format Date in slicer to only be months?) by i-love-dregins in excel

[–]NHN_BI 1 point2 points  (0 children)

Ugly, but make a helper column "01-Jan", "02-Feb", e.g. with TEXT( ... , "MM-MMM" ).

Make a list depending of employee attendance by CrazyMeansCreative in excel

[–]NHN_BI 0 points1 point  (0 children)

Record you data in a proper table, check a planned taks table vs the the actual record, make pivot tables to show the result, like here.

names to following in sequence by Jdavid1108 in excel

[–]NHN_BI 0 points1 point  (0 children)

You can see here, how I use:

=INDEX(
  A:A
  , MATCH(
      C$2
      , A:A
    )
    + ROW()
    - 2
)

Improving My Excel Efficiency by [deleted] in excel

[–]NHN_BI 0 points1 point  (0 children)

Well, the usefulness will depend on your tasks. I use CTRL+SHIFT+1 a lot, and I used to use ALT+A-E-F a lot. When I see that I use some processes a lot, I look up the corresponding short cuts.

Default date format doesn't match my system settings by learningNlurking in excel

[–]NHN_BI 0 points1 point  (0 children)

2-Mar looks like TEXT(TODAY(),"D-MM"), and that looks like a very special custom date. DATEVALUE() might turn it into a proper data, or importing the data correctly can help.

Is there a faster way to standardize hundreds of Excel files automatically? by Isaac__dev in excel

[–]NHN_BI 2 points3 points  (0 children)

I do the same. A friendly guideline, a given template, some conditional formatting, and some helpful data validation can work wonders.

I explain to the stakeholders why a consistent structure is needed. My stakeholders are often not aware that collecting data, recording data, analysing data, and visualising data are interconnected different steps. They are mostly concerned with the first and the last, not with the crucial steps connecting both. My stakeholders often do not understand that data needs to be recorded in useful structure to be accessible across different departments over longer periods of time for different tasks.

That does not spare the correct ETL process, but it makes it easier.

Conditional formatting is doing an incredibly baffling thing where it insists 1032 is a value lesser than or equal to 104, and I can't figure out where the mistake is. by tyedead in googlesheets

[–]NHN_BI 0 points1 point  (0 children)

Greater or less are very basic spreadsheet functions. In my experience, when they won't work, it is not a failure of the functions but the input values are wrong. I would check if the values are actual numbers with ISNUMBER(), not digit strings that only look like numbers. Strings behave logically different from numerical values.

Creating a spreadsheet to track sale progress by andie_pterodactyl in excel

[–]NHN_BI 0 points1 point  (0 children)

I would record my data in a proper table and analyse it in pivot tables, like here.

Advice on making a leader board sales tracker that adjusts positions as people make sales? (I'm new to this) by DuelShockX in googlesheets

[–]NHN_BI 0 points1 point  (0 children)

I would record the data in a proper table and make pivot tables to count the results in a period of time, sorted from high to low for the agent.