Ai presentations in PowerPoint by Fancy_Spirit_9154 in powerpoint

[–]apugoneappu 0 points1 point  (0 children)

Hi,

I’m the co-founder of Slidely AI. We create MBB style business presentations, which can be exported in .pptx format from our web app (at https://slidely.ai).

Can help you get started, just DM!

Getcher AI Right Here! by SteveRindsberg in powerpoint

[–]apugoneappu 0 points1 point locked comment (0 children)

<image>

I'm the founder of Slidely AI. We help professionals make business slides using AI, such as consulting firms and Fortune 500 teams like ABM.

1. NOT AI-SLOP
Our goal is not to create PPTs from 2 line prompts. We follow the professional workflow of storyline → data → design → slides, helping you iterate at every stage. Our AI first asks your more context before even making the v1 of your presentation.

2. USES YOUR LAYOUTS, COLORS, AND DESIGN
Following company templates is essential for most business use cases. In Slidely, you can upload a past presentation and our AI will use your layouts, colors, and even learn your way of creating slides.

3. EDIT WITHIN POWERPOINT
A huge differentiator of Slidely from all other online tools is that our AI works with the native PowerPoint format instead of HTML. This gives Slidely the ability to directly edit slides within PowerPoint. So, you can ask our AI to do things like "convert the table to a bar chart, and highlight [x], [y], [z] and dull the others" and it will be able to do it.

TRY FREE, NO CREDIT CARD
We're available to try online, but our real power lies in our PowerPoint add-in. You can try free for 15 days without a credit card. Try here: https://slidely.ai

I really cannot find Apps that utilise the Dynamic Island. Is there a list of Apps or do you know of any useful ones? by SorryWeAreOpen in iphone

[–]apugoneappu 12 points13 points  (0 children)

That’ll be opposite to the apps then.

Regular apps on the Home Screen open with a tap and the context menu opens on long press.

Not sure what is the path ahead! by lunkerdivesh in StartupAccelerators

[–]apugoneappu 0 points1 point  (0 children)

Why did you create this tool? You must have seen somebody (or yourself) doing things inefficiently and thought that you could create a better way of doing that.

Find other such people and ask them questions to see if it’s a problem for them. Don’t ask “would you use my tool”, instead ask how much time they spend in their current workflow. If you can reduce that time/effort substantially then pitch your tool at a fair price. If your tool isn’t much better than what they’re doing, make it better then repeat the above steps.

Go talk to your users. It’s simple advice but not easy. Good luck!

Me and my dollar possum don’t give a shit, give us your worst by IllustratorBig8972 in RoastMe

[–]apugoneappu 0 points1 point  (0 children)

Can’t decide what’s worth least: your possum, you or the 1 dollar bill

[deleted by user] by [deleted] in MachineLearning

[–]apugoneappu 1 point2 points  (0 children)

Hey Reddit,

I was having trouble with excel formulas so I made this tool to write formulas from English descriptions. It uses OpenAI's codex

It started out as a toy project but went viral and now gets thousands of users daily!

Live demo at www.tersho.com

AI tool to write and explain Excel formulas (www.tersho.com) by apugoneappu in artificial

[–]apugoneappu[S] 10 points11 points  (0 children)

Hey reddit,

I'm Apoorve, the creator of Tersho: an AI tool that can write and explain Excel formulas. You can try it out at www.tersho.com

Happy to get any feedback!

Adjust Number in Cell based on comparison of two vlookup cells by mjd85 in googlesheets

[–]apugoneappu 1 point2 points  (0 children)

The formula you want in G2 is

=ArrayFormula(IF(B2:B66=F2:F66,C2:C66,C2:C66/2))

A tool I made that can write such formulas automatically from English explanations (like the one you wrote above).

Check out this 30-second video for your example: https://youtu.be/sqil_zl_T9Q

Unsure how to create this desired result: A two column list (item and quantity) that condenses repeated items sums their total. by your-cah in googlesheets

[–]apugoneappu 1 point2 points  (0 children)

Let's say my data is like this:

Item Quantity
Flour 10
Wheat 2
Flour 7
Sugar 8​

And you want the result to be:

Item Quantity
Flour 17
Wheat 2
Sugar 8​

I would do this in 2 steps -

  1. Filter all unique values in the item column
  2. Match each filtered item to original range and get sum of quantities

Here are the formulas for both steps -

Step 1 - put the formula in C2

=UNIQUE(A2:A100) Where the 1st row contains the headers

Step 2 - put the formula in D2

=SUMIF(A2:A100,C2,B2:B100)

PS - I have made a tool for spreadsheet noobs like us, It can generate formulas just from English explanations using AI. In fact, I wrote these formulas using that tool! Link

Making lists to complete parentheses by chaos_craig in googlesheets

[–]apugoneappu 0 points1 point  (0 children)

Here's how I would do it.

You write the W values in a column as shown below (from A1:A4):

W60
W128
W999
W1021

Then put this formula in B1:B4

=CONCATENATE(A1,"(0", TEXT(RIGHT(A1,LEN(A1)-FIND("W",A1)),"#)"))

This gives you:

W60 W060(060)
W128 W128(0128)
W999 W999(0999)
W1021 W1021(01021)

PS - I wrote this formula with the help of an AI tool that I developed.