Extract Text from Images

Поделиться
HTML-код
  • Опубликовано: 13 сен 2024

Комментарии • 9

  • @hermawanyulianto2645
    @hermawanyulianto2645 2 года назад

    Wow..I don't think of it so far, if appsheet can do it, thanks for the information. always success for this channel.

  • @rubyruby4270
    @rubyruby4270 9 месяцев назад

    If I want to search for a row by scanning a character using OCR technology, what will be the steps?

  • @rm00l60
    @rm00l60 2 года назад

    Thank you so much man, this will be really helpful.

  • @vvdd903
    @vvdd903 10 месяцев назад

    how would i extract a total price from a receipt. since receipt has multiples number but just need total price?

    • @appify
      @appify  9 месяцев назад

      In this scenario you can assume the highest price is the total price. So max(Extractprices([Column])) something to that effect.

  • @mangeshmundhe7539
    @mangeshmundhe7539 2 года назад

    Can you please make a video on how references work in Appsheet…that is bit tricky to understand…thanks

    • @appify
      @appify  2 года назад

      Take a look at this video ruclips.net/video/18N4TpxiwK4/видео.html

  • @hermawanyulianto2645
    @hermawanyulianto2645 2 года назад

    Could you give solution for this matter ? Thank you very much if you respond
    Data ilustration (3 columns in 1 table)
    col.1: A,A,B,C,C,C.........etc
    col.2: H,I,J,......... etc
    col.3: 1,2,1,1,2,3 (sample data that I want, it is filled automatically),
    my question : What is the formula for column 3 to automatically fill in numbers, based on the data in columns 1 and 2 (AH=1,AH=2;BI=1;CJ=1,CJ=2,CJ=3....etc), I know the formula in google sheet (=COUNTIFS($B$2:$B2,$B2)) but don't know in the appsheet, please...thank

    • @appify
      @appify  2 года назад

      Switch() may be the best way.
      switch([col1]&[col2], AH, 1, AH, 2, BI, 1, nextcond, nextresult, catchall value)
      The first part of the switch function concatenates col A and B. Then follow pairs of conditions and results. Just keep adding on more as needed. The last value is a catch all value if non of the previous pairs match.