我有以下函数来显示数据库中的已排序,已过滤和约束的数组:
=array_constrain(
sort(
{
arrayformula('Sheet1'!BP6:BU717)
\
FILTER('Sheet1'!$BV$6:$DQ$717; 'Sheet1'!$BV$1:$DQ$1='Sheet2'!$D$11; 'Sheet1'!$BV$2:$DQ$2='Sheet2'!$D$12)
};
10;True);
1;10)
它可以按照需要工作,但有时候,决定排序(第10个)的列中某些单元格的值是0.我需要sort函数来忽略那些带零的行,所以数组被约束到第一行最小值不为零。
答案 0 :(得分:1)
你的这个公式:
PyObject *pName, *pModule, *pDict, *pFunc, *pValue; // Initialize the Python Interpreter
Py_Initialize();
FILE *fd = fopen("test.py","r");
PyFile_FromString("test.py", "r");
PyRun_SimpleFileEx(PyFile_AsFile(PyFileObject),"test.py", 1); //file before returning.
Py_Finalize();
cout << "Press any key to exit" << endl;
_getch();