Ben

Results 21 comments of Ben

Thanks for filing and I agree this can be annoying. Could you make a small reproducible example for me to get started with? Thanks.

Thank for the attempt, but I see many issues with your code. For example line 206 uses .nunique() which is different more expensive than something like .count(). Many things depend...

I'll go through this more tomorrow, but looking at your group_by year solution... ``` transactions['TransactionDate'] = pd.to_datetime(transactions.TransactionDate) transactions['Year'] = transactions['TransactionDate'].apply(lambda x: x.year) transactions.groupby('Year').apply(lambda x: pd.Series(dict( Transactions=x.shape[0] ))).reset_index() ``` This inserts...

@morrisseybr this only works client-side. Any idea how to make it work within a Server Component?

I fixed this on Next.js 14 by doing the following 1. In Chrome Developer Tools, go to Application > Local Storage > delete the `theme` variable 2. Change ``` {...

What operating system are you using? I wonder if this is related to #4378 ?

@vick08 that smells like issue #4378. Maybe you can try downgrading to 0.45.0. That worked for me.

I closed issue #4387 which I _think_ is related to this one. For me, the problem exhibits itself in that the `CtrlCmd` key code does not work as it did...

I recently discovered that this error occurs when loading a workbook that has auto filters and calling `saveWorkbook()` on that wb instance.